Created
October 3, 2021 16:59
-
-
Save ghaffaru/82d863f5892f055542747f1309b073bd to your computer and use it in GitHub Desktop.
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 characters
| FROM python:3 | |
| ENV PYTHONUNBUFFERED=1 | |
| RUN mkdir /code | |
| WORKDIR /code | |
| COPY requirements.txt /code/ | |
| RUN pip install -r requirements.txt | |
| COPY . /code/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment