Skip to content

Instantly share code, notes, and snippets.

@aledruetta
Created March 27, 2021 13:07
Show Gist options
  • Save aledruetta/45ac6da6506ea0ba713ada9f48bc68c2 to your computer and use it in GitHub Desktop.
Save aledruetta/45ac6da6506ea0ba713ada9f48bc68c2 to your computer and use it in GitHub Desktop.
FROM python:slim
WORKDIR /app/
COPY ./server.py .
EXPOSE 5001
CMD ["python", "/app/server.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment