development-environment/Dockerfile
Steven Polley def813fe4f
Some checks failed
continuous-integration/drone/push Build is failing
add ls for debugging purposes
2020-10-04 13:24:01 -06:00

16 lines
356 B
Docker

FROM codercom/code-server:latest
# Install Go
RUN curl -O https://golang.org/dl/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", "."]