Skip to content

Instantly share code, notes, and snippets.

@sk-t3ch
Created May 6, 2020 10:37
Show Gist options
  • Save sk-t3ch/e986f0516ff4c3c87bff6d9ded2a5814 to your computer and use it in GitHub Desktop.
Save sk-t3ch/e986f0516ff4c3c87bff6d9ded2a5814 to your computer and use it in GitHub Desktop.
Hello World Cluster CloudFormation - Python Web Server Dockerfile
FROM python:3.7-slim
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY src /app
EXPOSE 5000
CMD python app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment