1
0
Fork 0
website/Containerfile

11 lines
273 B
Text
Raw Normal View History

2023-03-25 16:14:53 +01:00
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"]