Skip to content

Instantly share code, notes, and snippets.

@ahmedbesbes
Created May 10, 2022 17:26
Show Gist options
  • Save ahmedbesbes/e4754a221769fb25fbb5e3862666135d to your computer and use it in GitHub Desktop.
Save ahmedbesbes/e4754a221769fb25fbb5e3862666135d to your computer and use it in GitHub Desktop.
FROM python:3.7-slim-buster
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 80
CMD [ "python", "app.py" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment