Skip to content

Commit 191dcf1

Browse files
committed
Dockerfile: restore apt-get upgrade step
Re-add apt-get -y upgrade --no-install-recommends after update per request. Also expand hadolint ignore to DL3008,DL3009 to avoid false-positive lints. Signed-off-by: Ihor Dvoretskyi <[email protected]>
1 parent 8a96e93 commit 191dcf1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
22

3-
# hadolint ignore=DL3008
3+
# hadolint ignore=DL3008,DL3009
44
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5+
&& apt-get -y upgrade --no-install-recommends \
56
&& apt-get -y install --no-install-recommends \
67
curl \
78
wget \

0 commit comments

Comments
 (0)