added dockerfiles
for building the stuff
This commit is contained in:
13
backend/public/Dockerfile
Normal file
13
backend/public/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
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']
|
Reference in New Issue
Block a user