Last active
June 5, 2020 06:07
-
-
Save dixneuf19/2bf325c21125d1758f41d88b4149b557 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.8 | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt | |
COPY src/ app/ | |
WORKDIR app/ | |
CMD ["python", "main.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment