pokedash / Dockerfile
AravindSL1's picture
Changed Host settings
3fb5c53
raw
history blame
162 Bytes
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
EXPOSE 7860
ENV PORT 7860
ENTRYPOINT ["python", "app.py"]