Skip to content

Commit

Permalink
chore: run apt-get update before running other commands (TheAlgorit…
Browse files Browse the repository at this point in the history
…hms#41)

This will run `sudo apt-get update` before running any other commands on the Gitpod prebuild image (`.gitpod.dockerfile`).
  • Loading branch information
Panquesito7 authored Jun 23, 2023
1 parent c0c6907 commit 2cb579e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitpod.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM gitpod/workspace-base

RUN curl https://nim-lang.org/choosenim/init.sh -sSf -o install_nim.sh \
RUN sudo apt-get update && curl https://nim-lang.org/choosenim/init.sh -sSf -o install_nim.sh \
&& chmod +x ./install_nim.sh \
&& ./install_nim.sh -y \
&& rm install_nim.sh \
Expand Down

0 comments on commit 2cb579e

Please sign in to comment.