Build image for Flask Redis Counter
FROM python:3.6-alpine | |
LABEL maintainer="Craig Derington <craig@craigderington.me>" | |
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