Skip to content

Instantly share code, notes, and snippets.

@gagansh7171
Created August 23, 2020 18:28
Embed
What would you like to do?
Project Dockerfile
FROM python:3
ENV PYTHONUNBUFFERED 1
WORKDIR /app/api
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . ./
EXPOSE 8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment