SERPent / Dockerfile
Game4all's picture
Fix wrong python executbale
4635b74
raw
history blame contribute delete
316 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ENV PLAYWRIGHT_BROWSERS_PATH=0
RUN pip install --no-cache-dir playwright && \
playwright install-deps chromium && \
playwright install chromium
COPY . .
EXPOSE 7860
CMD ["python", "./app.py"]