Last active
March 20, 2019 04:45
-
-
Save freyta/91a5f617e8c21faa07366b70b8407c71 to your computer and use it in GitHub Desktop.
7-Eleven Fuel App Dockerfile
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:2-alpine | |
COPY . /volume1/docker/fuelapp | |
WORKDIR /volume1/docker/fuelapp | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY . /volume1/docker/fuelapp | |
CMD [ "python", "./app.py" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment