v_1.2
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
FROM python:3.12-slim
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY . .
|
||||
ENV DATA_DIR=/data PORT=8080
|
||||
VOLUME /data
|
||||
EXPOSE 8080
|
||||
CMD ["python", "app.py"]
|
||||
Reference in New Issue
Block a user