Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rafaeldalsenter/b7caa4a03e908ed9437f9b575d1e968b to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/b7caa4a03e908ed9437f9b575d1e968b to your computer and use it in GitHub Desktop.
FROM python:3.8
WORKDIR /app
COPY /src /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
CMD [ "python", "-u", "__init__.py" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment