File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,13 @@ RUN useradd -m -u 1000 $USER
1313WORKDIR $HOME/kg_generator
1414
1515# Update system and install dependencies.
16- RUN apt-get update && apt-get install --no-install-recommends -y \
17- build-essential \
18- software-properties-common
19- RUN apt-get install libxrender1 --no-install-recommends -y
20- RUN apt-get install libxext6 --no-install-recommends -y
16+ RUN apt-get update && \
17+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
18+ build-essential \
19+ ca-certificates \
20+ gnupg \
21+ dirmngr && \
22+ rm -rf /var/lib/apt/lists/*
2123# RUN apt-get install libx11-6 --no-install-recommends -y
2224# RUN apt-get install libglib2.0-0 --no-install-recommends -y
2325# Copy code and start script (this will place the files in home/username/)
You can’t perform that action at this time.
0 commit comments