From eee5276a06320396c476b73a4d7c817d1f6613f2 Mon Sep 17 00:00:00 2001 From: Disty0 <47277141+Disty0@users.noreply.github.com> Date: Sat, 8 Apr 2023 19:02:47 +0300 Subject: [PATCH] Replace gunzip with gzip #0 7.757 E: Unable to locate package gunzip --- docker/development.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/development.dockerfile b/docker/development.dockerfile index 6837ff6..81885e9 100644 --- a/docker/development.dockerfile +++ b/docker/development.dockerfile @@ -2,7 +2,7 @@ FROM crystallang/crystal:1.4.1 # Install utilities required to make this Dockerfile run RUN apt-get update && \ - apt-get install -y wget gunzip + apt-get install -y wget gzip # Add the nodesource ppa to apt. Update this to change the nodejs version. RUN wget https://deb.nodesource.com/setup_16.x -O- | bash @@ -23,7 +23,7 @@ RUN npm install -g yarn mix # Installs overmind, not needed if nox is the process manager. RUN wget https://github.com/DarthSim/overmind/releases/download/v2.2.2/overmind-v2.2.2-linux-amd64.gz && \ - gunzip overmind-v2.2.2-linux-amd64.gz && \ + gzip -d overmind-v2.2.2-linux-amd64.gz && \ mv overmind-v2.2.2-linux-amd64 /usr/bin/overmind && \ chmod +x /usr/bin/overmind