iwakuweb/Dockerfile

24 lines
422 B
Text
Raw Permalink Normal View History

2024-07-12 21:51:44 +00:00
FROM rust:1.79 as compile
2024-07-12 19:56:23 +00:00
WORKDIR /build
COPY . .
2024-07-12 22:47:51 +00:00
RUN rustup target add x86_64-unknown-linux-musl
2024-07-12 21:32:35 +00:00
RUN rm -Rf /build/Cargo.lock
2024-07-12 21:51:44 +00:00
RUN cargo update
2024-07-12 19:56:23 +00:00
RUN cargo build --release
2024-07-12 22:47:51 +00:00
RUN ls /build/target
FROM gcr.io/distroless/cc
2024-07-12 19:56:23 +00:00
WORKDIR /app
2024-07-12 22:47:51 +00:00
COPY --from=compile /build/target/release/iwakura-web /app/
2024-07-12 19:56:23 +00:00
COPY --from=compile /build/assets /app/assets
2024-07-12 22:47:51 +00:00
COPY --from=compile /build/templates /app/templates
CMD ["/app/iwakura-web"]