diff options
-rw-r--r-- | deployment/docker/src/main/docker/Dockerfile | 9 | ||||
-rw-r--r-- | docs/release-notes.rst | 19 |
2 files changed, 23 insertions, 5 deletions
diff --git a/deployment/docker/src/main/docker/Dockerfile b/deployment/docker/src/main/docker/Dockerfile index d074c404..e4b627de 100644 --- a/deployment/docker/src/main/docker/Dockerfile +++ b/deployment/docker/src/main/docker/Dockerfile @@ -32,11 +32,10 @@ ENV OPEN_CLI_HOME=/opt/oclip \ ADD ./STAGE $OPEN_CLI_HOME WORKDIR $OPEN_CLI_HOME -RUN sudo apt-get install -y lighttpd git curl pandoc vim && \ - cd /tmp && curl -O https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz && \ - tar -xvf go1.9.linux-amd64.tar.gz && mkdir -p /tmp/gotty && \ - GOPATH=/tmp/gotty /tmp/go/bin/go get github.com/yudai/gotty && \ - mv /tmp/gotty/bin/gotty /usr/local/bin/ && \ +RUN sudo apt-get install -y lighttpd git wget pandoc vim && \ + cd /tmp && wget https://github.com/yudai/gotty/releases/download/v1.0.0/gotty_linux_amd64.tar.gz && \ + tar -xvf gotty_linux_amd64.tar.gz && chmod +x ./gotty && \ + mv ./gotty /usr/local/bin/ && \ sudo chown -R ocomp:ocomp $OPEN_CLI_HOME && pandoc -t plain $OPEN_CLI_HOME/docs/README.md > $OPEN_CLI_HOME/docs/oclip-readme.txt && \ sudo apt-get purge -y pandoc && sudo apt-get autoremove -y && sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/* /tmp/go /tmp/gotty /tmp/* /var/tmp/* && \ chmod +x $OPEN_CLI_HOME/bin/oclip.sh && \ diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 33023619..bb319cff 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -5,6 +5,25 @@ CLI Release Notes ================= +Version: 6.0.1 +-------------- + +:Release Date: 2021-04-01 + +*New Features* + +1. Metadata support is added in OCS YAML + + +*Security Notes* + +Fixed Security Issues + +Known Security Issues + +Known Vulnerabilities in Used Modules + + Version: 6.0.0 -------------- |