Solver-bylo / Dockerfile
HerzaJ's picture
Update Dockerfile
beeeecb verified
raw
history blame contribute delete
216 Bytes
FROM mcr.microsoft.com/playwright/python:v1.48.0-jammy
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY solver.py .
ENV PYTHONUNBUFFERED=1
CMD ["python", "solver.py"]