Created
June 9, 2019 09:12
Revisions
-
nirajpandkar created this gist
Jun 9, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ 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"]