Last active
August 5, 2020 15:50
-
-
Save pycaret/4d64af38b80173470c7d54ac60b7e967 to your computer and use it in GitHub Desktop.
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.7-slim | |
WORKDIR /app | |
ADD . /app | |
RUN apt-get update && apt-get install -y libgomp1 | |
RUN pip install --trusted-host pypi.python.org -r requirements.txt | |
ENTRYPOINT ["python"] | |
CMD ["/app/app.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment