Skip to content

Instantly share code, notes, and snippets.

@ryderdamen
Created January 21, 2020 19:24
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 ryderdamen/510f36e6d57df90bb4ccbb18ee67b647 to your computer and use it in GitHub Desktop.
Save ryderdamen/510f36e6d57df90bb4ccbb18ee67b647 to your computer and use it in GitHub Desktop.
The Dockerfile for running our cat facts app.
FROM python:3.7-alpine
WORKDIR /code
COPY ./src/requirements.txt /code/requirements.txt
RUN pip install -r requirements.txt
COPY ./src .
CMD ["app.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment