mirror of
https://github.com/pinry/pinry.git
synced 2026-01-14 11:12:05 +01:00
14 lines
197 B
Docker
14 lines
197 B
Docker
FROM python:3
|
|
ENV PYTHONUNBUFFERED 1
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install pipenv
|
|
RUN pipenv install --three --system
|
|
|
|
RUN python3 manage.py collectstatic --noinput
|
|
|
|
VOLUME /app/static/media
|
|
|