Skip to content
Snippets Groups Projects
Commit e3d1365f authored by Louis's avatar Louis :fire:
Browse files

Use wget

parent 8365d4f3
No related branches found
No related tags found
No related merge requests found
Pipeline #386 passed with stage
in 1 minute and 19 seconds
FROM node:16
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y curl && rm -rf /var/lib/apt/lists/*
RUN apt update && apt install -y wget curl && rm -rf /var/lib/apt/lists/*
RUN curl -o go1.20.tar.gz https://go.dev/dl/go1.20.2.linux-amd64.tar.gz \
RUN wget https://go.dev/dl/go1.20.2.linux-amd64.tar.gz \
&& rm -rf /usr/local/go \
&& tar -C /usr/local -xzf go1.20.tar.gz
&& tar -C /usr/local -xzf go1.20.2.linux-amd64.tar.gz
RUN curl -L https://fly.io/install.sh | sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment