Skip to content

Instantly share code, notes, and snippets.

@twyle
Created June 13, 2022 08:08
Show Gist options
  • Save twyle/ca0891868aefd17551cf3318889d3b36 to your computer and use it in GitHub Desktop.
Save twyle/ca0891868aefd17551cf3318889d3b36 to your computer and use it in GitHub Desktop.
# pull official base image
FROM python:3.9.5-slim-buster
# set work directory
WORKDIR /usr/src/app
# set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# install dependencies
RUN pip install --upgrade pip
COPY ./requirements.txt /usr/src/app/requirements.txt
RUN pip install -r requirements.txt
# copy project
COPY . /usr/src/app/
ENTRYPOINT [ "python", "main.py" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment