development-environment/Dockerfile
Steven Polley e0d486812d
Some checks failed
continuous-integration/drone/push Build is failing
Curl wasn't following redirect to this url
2020-10-04 13:27:08 -06:00

16 lines
359 B
Docker

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