Skip to content

Instantly share code, notes, and snippets.

@niomwungeri-fabrice
Created October 29, 2019 16:09
Show Gist options
  • Select an option

  • Save niomwungeri-fabrice/0d5af4a3d39a9ef968681d1f1d4da4fe to your computer and use it in GitHub Desktop.

Select an option

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