Skip to content

Instantly share code, notes, and snippets.

@robvanderleek
Last active March 19, 2017 20:17
Show Gist options
  • Save robvanderleek/b262f614820fc0d2f5cb135575163148 to your computer and use it in GitHub Desktop.
Save robvanderleek/b262f614820fc0d2f5cb135575163148 to your computer and use it in GitHub Desktop.
Buzz generator Dockerfile
FROM alpine:3.5
RUN apk add --update python py-pip
COPY requirements.txt /src/requirements.txt
RUN pip install -r /src/requirements.txt
COPY app.py /src
COPY buzz /src/buzz
CMD python /src/app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment