mirror of
https://github.com/LowderPlay/cheburcheck.git
synced 2026-09-22 22:37:59 +03:00
37 lines
903 B
Docker
37 lines
903 B
Docker
FROM docker.io/rust:1-slim-bookworm AS build
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . .
|
|
|
|
RUN apt update && apt install -y libssl-dev pkg-config
|
|
|
|
RUN --mount=type=cache,target=/build/target \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/usr/local/cargo/git \
|
|
set -eux; \
|
|
cargo build --release --package website; \
|
|
objcopy --compress-debug-sections target/release/website ./main
|
|
|
|
################################################################################
|
|
|
|
FROM docker.io/debian:bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt update && apt install -y libssl3 ca-certificates curl
|
|
|
|
## copy the main binary
|
|
COPY --from=build /build/main ./
|
|
|
|
COPY --from=build /build/website/static ./static
|
|
COPY --from=build /build/website/templates ./templates
|
|
|
|
## ensure the container listens globally on port 8080
|
|
ENV ROCKET_ADDRESS=0.0.0.0
|
|
ENV ROCKET_PORT=8080
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ./main
|