Files
my-website-v2/backend/public/Dockerfile
Wyatt J. Miller 79cc4caa58 added dockerfiles
for building the stuff
2025-07-19 00:44:28 -04:00

14 lines
246 B
Docker

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