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

15 lines
231 B
Docker
Raw Normal View History

FROM rust:1.88.0
WORKDIR /app
2025-07-19 14:00:47 -04:00
COPY ./task ./task
COPY ./cache ./cache
COPY ./storage ./storage
RUN mkdir /app/posts
RUN cargo build --release --manifest-path ./task/Cargo.toml
EXPOSE 3000
2025-07-19 21:52:36 -04:00
CMD ["/app/task/target/release/task"]