Skip to content

Instantly share code, notes, and snippets.

@pycaret
Last active August 5, 2020 15:50
Show Gist options
  • Save pycaret/4d64af38b80173470c7d54ac60b7e967 to your computer and use it in GitHub Desktop.
Save pycaret/4d64af38b80173470c7d54ac60b7e967 to your computer and use it in GitHub Desktop.
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