Skip to content

Commit 07bfb63

Browse files
Panquesito7dlesnoff
authored andcommitted
chore: run apt-get update before running other commands (#41)
This will run `sudo apt-get update` before running any other commands on the Gitpod prebuild image (`.gitpod.dockerfile`).
1 parent 6e2a926 commit 07bfb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitpod.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM gitpod/workspace-base
22

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

0 commit comments

Comments
 (0)