Last active
June 24, 2021 00:56
-
-
Save craigderington/f7b002cfc92a6cd2a2dc7eb784615089 to your computer and use it in GitHub Desktop.
Build image for Flask Redis Counter
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.6-alpine | |
LABEL maintainer="Craig Derington <[email protected]>" | |
RUN apk update && apk upgrade | |
RUN apk add screen curl | |
COPY . /app | |
WORKDIR /app | |
RUN pip install -r requirements.txt | |
EXPOSE 8000 | |
CMD ["python", "app.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment