1
0
Fork 0
website/Containerfile
2023-03-25 16:15:05 +01:00

11 lines
No EOL
273 B
Docker

FROM rust:slim as build-env
WORKDIR /app
COPY . /app
RUN cargo build --release
FROM gcr.io/distroless/cc
COPY --from=build-env /app/target/release/website /
COPY --from=build-env /templates /
COPY --from=build-env /posts /
COPY --from=build-env /static /
CMD ["./website"]