2022-12-11 16:35:50 +00:00
|
|
|
FROM rust:bullseye as builder
|
2022-12-11 15:33:16 +00:00
|
|
|
|
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY Cargo.toml /app
|
|
|
|
COPY Cargo.lock /app
|
|
|
|
COPY src /app/src
|
|
|
|
COPY templates /app/templates
|
2022-12-11 16:35:50 +00:00
|
|
|
RUN cargo build --release
|
2022-12-11 15:33:16 +00:00
|
|
|
|
2022-12-11 16:35:50 +00:00
|
|
|
FROM gcr.io/distroless/cc:nonroot
|
2022-12-11 15:33:16 +00:00
|
|
|
COPY --from=builder /app/target/release/paste-frontend /
|
2022-12-11 17:24:38 +00:00
|
|
|
ADD --chmod=005 templates /templates
|
2022-12-11 17:01:05 +00:00
|
|
|
EXPOSE 8080
|
2022-12-11 16:35:50 +00:00
|
|
|
CMD ["/paste-frontend"]
|