Files
my-website-v2/backend/public/Dockerfile
2025-07-19 02:05:57 -04:00

13 lines
226 B
Docker

FROM rust:1.88.0
WORKDIR /app
COPY ./public /app/public
COPY ../cache /app/cache
RUN cargo build --release --manifest-path ./public/Cargo.toml
EXPOSE 3000
CMD ['cargo', 'run', '--manifest-path', '/app/public/Cargo.toml']