GrokPythonTo2 / Dockerfile
yxmiler's picture
Update Dockerfile
50cb2a9 verified
raw
history blame
175 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PORT=5200
EXPOSE 5200
CMD ["python", "app.py"]