laravel / Dockerfile
kamiwork's picture
Create Dockerfile
dc6ecc9 verified
raw
history blame contribute delete
343 Bytes
FROM mcr.microsoft.com/playwright:v1.40.0-jammy
# Python aur pip setup
RUN apt-get update && apt-get install -y python3 python3-pip
WORKDIR /app
# Libraries install karein
RUN pip3 install playwright gradio
# Browser install karein
RUN playwright install chromium
COPY . .
# Port 7860 expose karein
EXPOSE 7860
CMD ["python3", "app.py"]