first commit
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM python:3.13-slim
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN apt-get update && apt-get install -y build-essential && \
|
||||
pip install --upgrade pip && pip install -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
RUN mkdir -p /app/instance
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["python", "run_waitress.py"]
|
Reference in New Issue
Block a user