Skip to content

Commit 3f10a67

Browse files
committed
Replace usage of apt with apt-get in Dockerfile since apt is meant to be
an end-user tool according to Super-Linter.
1 parent a41c08a commit 3f10a67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ FROM eclipse-temurin:17.0.8_7-jre
1919
EXPOSE 8080
2020

2121
# install curl
22-
RUN apt update \
23-
&& apt install -y curl \
22+
RUN apt-get update \
23+
&& apt-get install -y curl \
2424
&& rm -rf /var/lib/apt/lists/*
2525

2626
# download script for reading Docker secrets

0 commit comments

Comments
 (0)