Skip to content

Commit 01602c9

Browse files
committed
Remove usages of apt for apt-get
1 parent 4d5abcb commit 01602c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/lint/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL "com.github.actions.description"=""
55
LABEL "com.github.actions.icon"="code"
66
LABEL "com.github.actions.color"="purple"
77

8-
RUN apt update && apt install -y shellcheck
8+
RUN apt-get update && apt-get install -y shellcheck
99

1010
COPY entrypoint.sh /entrypoint.sh
1111

ci/test/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ LABEL "com.github.actions.description"=""
55
LABEL "com.github.actions.icon"="code"
66
LABEL "com.github.actions.color"="green"
77

8-
RUN apt update && \
9-
apt install -y python-pip && \
8+
RUN apt-get update && \
9+
apt-get install -y python-pip && \
1010
pip install autobahntestsuite
1111

1212
COPY entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)