Skip to content

Commit 9f442e6

Browse files
committed
Dockerfile: apt-get --assume-yes to prevent build from stalling
1 parent 18fac12 commit 9f442e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN git config --global --add safe.directory /app
1919
# Build our own copy of lxml using Ubuntu's libxml2/libxslt
2020
# (don't use the prebuilt wheel)
2121
# https://opendataservices.plan.io/issues/36790
22-
RUN apt install libxml2-dev libxslt-dev
22+
RUN apt-get --assume-yes install libxml2-dev libxslt-dev
2323
RUN pip install --no-binary lxml -r requirements.txt
2424

2525
RUN python manage.py collectstatic --noinput

0 commit comments

Comments
 (0)