Files

10 lines
204 B
Docker

FROM python:3.11-slim
WORKDIR /app
RUN pip install --upgrade pip
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV QS_PORT=3002
EXPOSE 3002
CMD ["python3", "app.py"]