platform / Dockerfile
OpenCaptchaWorld's picture
Upload 6 files
105e821 verified
raw
history blame contribute delete
140 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app/
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]