We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03270ec commit 70c0431Copy full SHA for 70c0431
.dockerignore
@@ -11,6 +11,6 @@ __pycache__/
11
/.gitignore
12
/docker-compose.yml
13
/Dockerfile
14
-/Pipfile
+/Pipfile.lock
15
/Procfile
16
/Makefile
Dockerfile
@@ -5,10 +5,8 @@ ENV DEBUG False
5
6
WORKDIR /app/
7
8
-COPY Pipfile.lock /app/Pipfile.lock
9
-RUN pip install --upgrade pipenv \
10
- && pipenv install --ignore-pipfile \
- && pipenv install gunicorn
+COPY Pipfile /app/Pipfile
+RUN pip install --upgrade pipenv && pipenv install
COPY . /app/
RUN pipenv run ./manage.py collectstatic
0 commit comments