Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2020-01-27 00:20:34 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-01-27 00:20:34 +0300
commitbc32205757f8c4ee3ebdaf7e4bfada22c2f1a5ff (patch)
tree1cef20f689ae797b849d062983782a735cd8bf34 /ci
parentda1e148818fc56a2268e06134568536be5c97355 (diff)
Replace apt with apt-get
Diffstat (limited to 'ci')
-rw-r--r--ci/dockerfiles/gnome-3-28-1804/Dockerfile2
-rw-r--r--ci/dockerfiles/ubuntu-16.04/Dockerfile4
-rw-r--r--ci/dockerfiles/ubuntu-18.04/Dockerfile4
3 files changed, 5 insertions, 5 deletions
diff --git a/ci/dockerfiles/gnome-3-28-1804/Dockerfile b/ci/dockerfiles/gnome-3-28-1804/Dockerfile
index f4f028097..d00cdc4d7 100644
--- a/ci/dockerfiles/gnome-3-28-1804/Dockerfile
+++ b/ci/dockerfiles/gnome-3-28-1804/Dockerfile
@@ -14,7 +14,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
mkdir -p /snap/bin && \
mv snapcraft-wrapper /snap/bin/snapcraft && \
chmod a+x /snap/bin/snapcraft && \
- apt remove --yes --purge curl jq squashfs-tools && \
+ apt-get remove --yes --purge curl jq squashfs-tools && \
apt-get autoclean --yes && \
apt-get clean --yes
diff --git a/ci/dockerfiles/ubuntu-16.04/Dockerfile b/ci/dockerfiles/ubuntu-16.04/Dockerfile
index 10f64bf90..aac32f83f 100644
--- a/ci/dockerfiles/ubuntu-16.04/Dockerfile
+++ b/ci/dockerfiles/ubuntu-16.04/Dockerfile
@@ -24,5 +24,5 @@ RUN \
libsecret-1-dev libsodium-dev libwebkit2gtk-4.0-dev libsystemd-dev \
libsoup2.4-dev libjson-glib-dev libavresample-dev freerdp2-dev \
libspice-protocol-dev libspice-client-gtk-3.0-dev libfuse-dev wget \
- && apt autoremove -y \
- && apt clean -y
+ && apt-get autoremove -y \
+ && apt-get clean -y
diff --git a/ci/dockerfiles/ubuntu-18.04/Dockerfile b/ci/dockerfiles/ubuntu-18.04/Dockerfile
index b3bdb0c37..d36543304 100644
--- a/ci/dockerfiles/ubuntu-18.04/Dockerfile
+++ b/ci/dockerfiles/ubuntu-18.04/Dockerfile
@@ -24,5 +24,5 @@ RUN \
libsecret-1-dev libsodium-dev libwebkit2gtk-4.0-dev libsystemd-dev \
libsoup2.4-dev libjson-glib-dev libavresample-dev freerdp2-dev \
libspice-protocol-dev libspice-client-gtk-3.0-dev \
- && apt autoremove -y \
- && apt clean -y
+ && apt-get autoremove -y \
+ && apt-get clean -y