Created
October 9, 2019 14:57
-
-
Save maykonchagas/676d3edb2eec8fd9c03466121ef4d557 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
| # Pull base image | |
| FROM python:3 | |
| # Set environment varibles | |
| ENV PYTHONDONTWRITEBYTECODE 1 | |
| ENV PYTHONUNBUFFERED 1 | |
| # Set work directory | |
| RUN mkdir /backend-challenge | |
| COPY . /backend-challenge/ | |
| WORKDIR /backend-challenge/src | |
| # Install dependencies | |
| RUN pip install -r /backend-challenge/requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment