|
@ -29,6 +29,8 @@ COPY Pipfile* /tmp/ |
|
|
# hadolint ignore=DL3013 |
|
|
# hadolint ignore=DL3013 |
|
|
RUN pip install --no-cache-dir -U pip pipenv==2020.11.15 \ |
|
|
RUN pip install --no-cache-dir -U pip pipenv==2020.11.15 \ |
|
|
&& pipenv lock -r > /requirements.txt \ |
|
|
&& 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 install --no-cache-dir -r /requirements.txt \ |
|
|
&& pip wheel --no-cache-dir -r /requirements.txt -w /deps |
|
|
&& pip wheel --no-cache-dir -r /requirements.txt -w /deps |
|
|
|
|
|
|
|
|