Created
June 9, 2019 09:12
-
-
Save nirajpandkar/93a12332ea859bf8974c59cf1128d95f to your computer and use it in GitHub Desktop.
Dockerfile for captcha breaker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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