Skip to content

Instantly share code, notes, and snippets.

@niomwungeri-fabrice
Created October 29, 2019 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niomwungeri-fabrice/0d5af4a3d39a9ef968681d1f1d4da4fe to your computer and use it in GitHub Desktop.
Save niomwungeri-fabrice/0d5af4a3d39a9ef968681d1f1d4da4fe to your computer and use it in GitHub Desktop.
Docker config for Python3 Django
FROM python:3.7
ENV PYTHONUNBUFFERED 1
MAINTAINER Fabrice NIYOMWUNGERI
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment