Browse Source

Update Dockerfile to install packages for heroku

pull/1164/head
Hironsan 3 years ago
parent
commit
244180c1c6
1 changed files with 2 additions and 0 deletions
  1. 2
      Dockerfile

2
Dockerfile

@ -29,6 +29,8 @@ COPY Pipfile* /tmp/
# hadolint ignore=DL3013
RUN pip install --no-cache-dir -U pip pipenv==2020.11.15 \
&& pipenv lock -r > /requirements.txt \
&& echo "psycopg2-binary==2.8.6" >> /requirements.txt \
&& echo "django-heroku==0.3.1" >> /requirements.txt \
&& pip install --no-cache-dir -r /requirements.txt \
&& pip wheel --no-cache-dir -r /requirements.txt -w /deps

Loading…
Cancel
Save