This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM codercom/code-server:latest
|
||||
|
||||
# Install Go
|
||||
RUN curl -O https://golang.org/dl/go1.15.2.linux-amd64.tar.gz && \
|
||||
tar xvf go1.15.2.linux-amd64.tar.gz && \
|
||||
chown -R root:root ./go && \
|
||||
mv go /usr/local && \
|
||||
rm -f go1.15.2.linux-amd64.tar.gz
|
||||
|
||||
|
||||
|
||||
|
||||
ENTRYPOINT ["/usr/bin/entrypoint.sh", "--bind-addr", "0.0.0.0:8080", "."]
|
||||
|
Reference in New Issue
Block a user