coder-enterprise-images/deprecated/webstorm/Dockerfile.ubuntu

15 lines
434 B
Docker

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