development-environment/Dockerfile
Steven Polley 2e4428392a
Some checks failed
continuous-integration/drone/push Build is failing
extract gz in tar command
2020-10-04 13:20:18 -06:00

15 lines
340 B
Docker

FROM codercom/code-server:latest
# Install Go
RUN curl -O https://golang.org/dl/go1.15.2.linux-amd64.tar.gz && \
tar xvfz 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", "."]