ddeeds / Dockerfile
sudotheworld's picture
Upload 56 files
70a50c3 verified
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
ENV PORT=8080
CMD ["python", "app.py"]