Dockerfile hinzugefügt

This commit is contained in:
2024-12-14 17:23:57 +00:00
parent 1eccb26a5d
commit 0c12944955

7
Dockerfile Normal file
View File

@@ -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