Files
my-website-v2/backend/public/Dockerfile

13 lines
235 B
Docker
Raw Normal View History

FROM rust:1.88.0
WORKDIR /app
2025-07-19 01:28:21 -04:00
COPY ./backend/public ./public
COPY ./backend/cache ./cache
RUN cargo build --release --manifest-path ./public/Cargo.toml
EXPOSE 3000
CMD ['cargo', 'run', '--manifest-path', '/app/public/Cargo.toml']