coder-enterprise-images/images/goland/Dockerfile.ubuntu

15 lines
420 B
Docker

FROM codercom/enterprise-multieditor:ubuntu
# Run everything as root
USER root
# Install goland.
RUN mkdir -p /opt/goland
RUN curl -L "https://download.jetbrains.com/product?code=GO&latest&distribution=linux" | tar -C /opt/goland --strip-components 1 -xzvf -
# Add a binary to the PATH that points to the goland startup script.
RUN ln -s /opt/goland/bin/goland.sh /usr/bin/goland
# Set back to coder user
USER coder