Skip to content

Instantly share code, notes, and snippets.

@dixneuf19
Last active June 5, 2020 06:07
Show Gist options
  • Save dixneuf19/2bf325c21125d1758f41d88b4149b557 to your computer and use it in GitHub Desktop.
Save dixneuf19/2bf325c21125d1758f41d88b4149b557 to your computer and use it in GitHub Desktop.
FROM python:3.8
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY src/ app/
WORKDIR app/
CMD ["python", "main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment