From e3d1365fb2b44f0bd50716e7c1264e707a0fabe0 Mon Sep 17 00:00:00 2001
From: Louis <contact@louiscap.co>
Date: Sat, 25 Mar 2023 01:44:13 +0000
Subject: [PATCH] Use wget

---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 8cb4d09..1cf36f7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
 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
 
-- 
GitLab