11 lines
273 B
Text
11 lines
273 B
Text
|
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"]
|