13 lines
235 B
Docker
13 lines
235 B
Docker
FROM rust:1.88.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./backend/public ./public
|
|
COPY ./backend/cache ./cache
|
|
|
|
RUN cargo build --release --manifest-path ./public/Cargo.toml
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ['cargo', 'run', '--manifest-path', '/app/public/Cargo.toml']
|