From 01602c919a2449585ada4ace5d037dec7376e7f5 Mon Sep 17 00:00:00 2001 From: Anmol Sethi <hi@nhooyr.io> Date: Sat, 20 Jul 2019 14:10:55 +0000 Subject: [PATCH] Remove usages of apt for apt-get --- ci/lint/Dockerfile | 2 +- ci/test/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/lint/Dockerfile b/ci/lint/Dockerfile index 5fb4693..3fe06f0 100644 --- a/ci/lint/Dockerfile +++ b/ci/lint/Dockerfile @@ -5,7 +5,7 @@ LABEL "com.github.actions.description"="" LABEL "com.github.actions.icon"="code" LABEL "com.github.actions.color"="purple" -RUN apt update && apt install -y shellcheck +RUN apt-get update && apt-get install -y shellcheck COPY entrypoint.sh /entrypoint.sh diff --git a/ci/test/Dockerfile b/ci/test/Dockerfile index 04bd993..a2fe695 100644 --- a/ci/test/Dockerfile +++ b/ci/test/Dockerfile @@ -5,8 +5,8 @@ LABEL "com.github.actions.description"="" LABEL "com.github.actions.icon"="code" LABEL "com.github.actions.color"="green" -RUN apt update && \ - apt install -y python-pip && \ +RUN apt-get update && \ + apt-get install -y python-pip && \ pip install autobahntestsuite COPY entrypoint.sh /entrypoint.sh -- GitLab