Changeset - e7bcb62e4261
[Not reviewed]
0 1 0
Joel Addison - 2 years ago 2022-03-19 04:24:25
joel@addison.net.au
Fix build with incompatible packages

Do not install package dependencies as all listed versions are known to work.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docker/Dockerfile
Show inline comments
...
 
@@ -33,7 +33,7 @@ COPY . /app/symposion_app
 

	
 
WORKDIR /app/symposion_app
 
RUN set -x \
 
    && pip install -r vendored_requirements.txt -c /reqs/constraints.txt
 
    && pip install -r vendored_requirements.txt -c /reqs/constraints.txt --no-deps
 
RUN set -x \
 
    && DJANGO_SECRET_KEY=1234 STRIPE_PUBLIC_KEY=1234 STRIPE_SECRET_KEY=1234 \
 
       DATABASE_URL="sqlite:////dev/null" python manage.py compilescss
0 comments (0 inline, 0 general)