From 0c1294495512e75f60c81569ac632047a84a4d65 Mon Sep 17 00:00:00 2001 From: groot Date: Sat, 14 Dec 2024 17:23:57 +0000 Subject: [PATCH] =?UTF-8?q?Dockerfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0c605f9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM codercom/code-server:latest +ENV VERSION="1.21.4" +ENV ARCH="amd64" +RUN curl -O -L "https://golang.org/dl/go${VERSION}.linux-${ARCH}.tar.gz" +RUN tar -xf "go${VERSION}.linux-${ARCH}.tar.gz" +RUN chown -R root:root ./go +RUN mv -v go /usr/local \ No newline at end of file