ARAZIM-1 / Dockerfile
RANA
Track geckodriver.exe using Git LFS
208e684
raw
history blame contribute delete
No virus
277 Bytes
FROM python:3.9
WORKDIR /ARAZIM
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y libgl1-mesa-glx
# Install Gunicorn
RUN pip install gunicorn
COPY . .
EXPOSE 7860
CMD ["gunicorn", "wsgi:app", "--bind", "0.0.0.0:7860"]