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.
 
 
 
 
 
 

14 regels
197 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
  7. RUN python3 manage.py collectstatic --noinput
  8. VOLUME /app/static/media