From b971e8078ef982dac3e667ee594784f5d21e9670 Mon Sep 17 00:00:00 2001 From: G r e y Date: Fri, 5 Feb 2021 15:46:41 -0500 Subject: [PATCH] fix(pycharm): Symlink pycharm -> pycharm-community (#45) --- images/pycharm/Dockerfile.centos | 2 +- images/pycharm/Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/pycharm/Dockerfile.centos b/images/pycharm/Dockerfile.centos index 6c4368f..cdb948d 100644 --- a/images/pycharm/Dockerfile.centos +++ b/images/pycharm/Dockerfile.centos @@ -8,7 +8,7 @@ RUN mkdir -p /opt/pycharm RUN curl -L "https://download.jetbrains.com/product?code=PCC&latest&distribution=linux" | tar -C /opt/pycharm --strip-components 1 -xzvf - # Add a binary to the PATH that points to the pycharm startup script. -RUN ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm +RUN ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm-community # Set back to coder user USER coder diff --git a/images/pycharm/Dockerfile.ubuntu b/images/pycharm/Dockerfile.ubuntu index ecb22ab..7649199 100644 --- a/images/pycharm/Dockerfile.ubuntu +++ b/images/pycharm/Dockerfile.ubuntu @@ -8,7 +8,7 @@ RUN mkdir -p /opt/pycharm RUN curl -L "https://download.jetbrains.com/product?code=PCC&latest&distribution=linux" | tar -C /opt/pycharm --strip-components 1 -xzvf - # Add a binary to the PATH that points to the pycharm startup script. -RUN ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm +RUN ln -s /opt/pycharm/bin/pycharm.sh /usr/bin/pycharm-community # Set back to coder user USER coder