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

Chore: dockerfile dev fixes (gunzip, bump lucky-cli) #787

Merged
Merged
Changes from 2 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 src/web_app_skeleton/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

# 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 Down Expand Up @@ -30,7 +30,7 @@ RUN wget https://github.com/DarthSim/overmind/releases/download/v2.2.2/overmind-
# Install lucky cli, TODO: fetch current lucky version from source code.
WORKDIR /lucky/cli
RUN git clone https://github.com/luckyframework/lucky_cli . && \
git checkout v0.30.0 && \
git checkout v1.0.0-rc1 && \
shards build --without-development && \
cp bin/lucky /usr/bin

Expand Down