pokedash / Dockerfile
AravindSL1's picture
Debug in Dockerfile
7e57d1f
raw
history blame contribute delete
No virus
191 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
EXPOSE 7860
ENV PORT 7860
ENTRYPOINT ["python", "app.py"]