Skip to content

Commit 0617239

Browse files
committed
Test dockerfile
1 parent ec984f2 commit 0617239

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ RUN useradd -m -u 1000 $USER
1313
WORKDIR $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/)

0 commit comments

Comments
 (0)