Skip to content

Instantly share code, notes, and snippets.

@MitchyBAwesome
Created July 9, 2018 04:23
Show Gist options
  • Save MitchyBAwesome/26e37bd63c1f0dccd43cbaec97bc3533 to your computer and use it in GitHub Desktop.
Save MitchyBAwesome/26e37bd63c1f0dccd43cbaec97bc3533 to your computer and use it in GitHub Desktop.
Dockerfile for Simple Python Web Server
FROM python:2.7.15-alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python"]
CMD ["app.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment