Files
my-website-v2/backend/task/Dockerfile
2025-07-19 14:00:47 -04:00

15 lines
257 B
Docker

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