Skip to content

Instantly share code, notes, and snippets.

@freyta
Last active March 20, 2019 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freyta/91a5f617e8c21faa07366b70b8407c71 to your computer and use it in GitHub Desktop.
Save freyta/91a5f617e8c21faa07366b70b8407c71 to your computer and use it in GitHub Desktop.
7-Eleven Fuel App Dockerfile
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