2025-07-19 00:44:28 -04:00
|
|
|
FROM rust:1.88.0
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2025-07-19 02:05:57 -04:00
|
|
|
COPY ./task /app/task
|
|
|
|
COPY ../cache /app/cache
|
|
|
|
COPY ../storage /app/storage
|
2025-07-19 00:44:28 -04:00
|
|
|
|
|
|
|
RUN mkdir /app/posts
|
|
|
|
RUN cargo build --release --manifest-path ./task/Cargo.toml
|
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
|
|
CMD ['cargo', 'run', '--manifest-path', '/app/task/Cargo.toml']
|