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

13 lines
219 B
Docker
Raw Normal View History

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