Browser2 / Dockerfile
Akwbw's picture
Create Dockerfile
cdaf281 verified
raw
history blame contribute delete
209 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN python -m pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install chromium
EXPOSE 5000
CMD ["python", "main.py"]