nas08-scripts/Stocks/WebService/Dockerfile

15 lines
242 B
Text
Raw Normal View History

2026-07-27 20:01:02 -04:00
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
RUN mkdir -p /data
EXPOSE 5005
CMD ["gunicorn", "--bind", "0.0.0.0:5005", "--workers", "2", "--timeout", "30",>