Skip to content

Commit 27ebc83

Browse files
run apt update in runtime image
1 parent d3b5018 commit 27ebc83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ ENV LC_ALL=C.UTF-8 \
7474
RUN groupadd -r ${DIONAEA_GROUP} && \
7575
useradd -r -d ${DIONAEA_HOME} -m -g ${DIONAEA_GROUP} ${DIONAEA_USER}
7676

77-
RUN apt-get -qq install -y \
77+
RUN apt-get update && \
78+
apt-get -qq install -y \
7879
-o APT::Install-Suggests=false \
7980
-o APT::Install-Recommends=false \
8081
-o Dpkg::Use-Pty="0" \

0 commit comments

Comments
 (0)