You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 line
123 B

  1. FROM python:3
  2. ENV PYTHONUNBUFFERED 1
  3. WORKDIR /app
  4. COPY . /app
  5. RUN pip install pipenv
  6. RUN pipenv install --three --system