Skip to content

Instantly share code, notes, and snippets.

@agrojas
Created December 1, 2020 01:00
Show Gist options
  • Save agrojas/356b6f3363f94ce9d7143c5ce6e61603 to your computer and use it in GitHub Desktop.
Save agrojas/356b6f3363f94ce9d7143c5ce6e61603 to your computer and use it in GitHub Desktop.
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD python ./index.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment