support-triage-env / Dockerfile
Avnishjain's picture
Upload 16 files
93dfdf9 verified
Raw
History Blame Contribute Delete
253 Bytes
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV PORT=8000
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
CMD ["python", "-m", "server.app"]