ssh-portfolio/Dockerfile

40 lines
1 KiB
Docker

FROM oven/bun:1.2-alpine AS www
WORKDIR /usr/src/www
COPY www/package.json www/bun.lock .
RUN bun install
COPY www .
RUN bun run build
FROM rust:1.87-alpine3.21 AS builder
RUN apk add --no-cache \
build-base \
git \
pkgconfig \
openssl-dev \
openssl-libs-static \
zlib-dev \
zlib-static
RUN cargo install patch-crate --locked
ARG CARGO_FEATURES="blog"
WORKDIR /usr/src/app
COPY rust-toolchain Cargo.toml Cargo.lock .
COPY patches patches
RUN mkdir src \
&& touch src/lib.rs \
&& echo "fn main() {}" > build.rs \
&& cargo patch-crate \
&& cargo build --locked --release --no-default-features --features $CARGO_FEATURES \
&& strip ./target/release/ssh-portfolio
COPY . .
COPY --from=www /usr/src/www/build www/build
RUN touch build.rs \
&& SKIP_PATCH_CRATE=1 cargo build --locked --release --no-default-features --features $CARGO_FEATURES
FROM scratch AS runner
EXPOSE 80/tcp 22/tcp
COPY --from=builder /usr/src/app/target/release/ssh-portfolio /usr/local/bin/ssh-portfolio
CMD ["/usr/local/bin/ssh-portfolio", "--host", "0.0.0.0"]