Created
June 6, 2020 13:21
-
-
Save rafaeldalsenter/b7caa4a03e908ed9437f9b575d1e968b 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 | |
WORKDIR /app | |
COPY /src /app | |
COPY requirements.txt /app | |
RUN pip install -r requirements.txt | |
CMD [ "python", "-u", "__init__.py" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment