Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace gunzip with gzip #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/development.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down