Skip to content

Instantly share code, notes, and snippets.

@nirajpandkar
Created June 9, 2019 09:12
Show Gist options
  • Save nirajpandkar/93a12332ea859bf8974c59cf1128d95f to your computer and use it in GitHub Desktop.
Save nirajpandkar/93a12332ea859bf8974c59cf1128d95f to your computer and use it in GitHub Desktop.
Dockerfile for captcha breaker
FROM python:3.6.3
# install Python modules needed by the Python app
COPY . /Captcha-Prediction
WORKDIR /Captcha-Prediction
RUN pip install --no-cache-dir -r requirements.txt
# tell the port number the container should expose
EXPOSE 5000
# run the application
CMD ["python", "main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment