Compare commits

...

3 Commits

Author SHA1 Message Date
Steven Polley 847fcba644 Upgrade hugo from 0.75.1 to 0.76.5
continuous-integration/drone/push Build is failing Details
2020-10-23 20:40:37 +00:00
Steven Polley 42c0447824 Use absolute path for Go executable 2020-10-23 20:39:09 +00:00
Steven Polley 55e50e6036 Upgrade Go from 1.15.2 to 1.15.3 2020-10-23 20:38:33 +00:00
1 changed files with 7 additions and 7 deletions

View File

@ -9,24 +9,24 @@ RUN sudo apt update && \
sudo apt autoremove -y
# Install Go
RUN curl -L -O https://dl.google.com/go/go1.15.2.linux-amd64.tar.gz && \
tar xvfz go1.15.2.linux-amd64.tar.gz && \
RUN curl -L -O https://dl.google.com/go/go1.15.3.linux-amd64.tar.gz && \
tar xvfz go1.15.3.linux-amd64.tar.gz && \
sudo chown -R root:root ./go && \
sudo mv go /usr/local && \
rm -f go1.15.2.linux-amd64.tar.gz
rm -f go1.15.3.linux-amd64.tar.gz
# Install OpenCV (via GoCV bindings)
RUN go get -u -d gocv.io/x/gocv && \
RUN /usr/local/bin/go get -u -d gocv.io/x/gocv && \
cd /home/coder/go/src/gocv.io/x/gocv && \
make install && \
make clean
# Install Hugo
RUN curl -L -O https://github.com/gohugoio/hugo/releases/download/v0.75.1/hugo_0.75.1_Linux-64bit.tar.gz && \
tar xvfz hugo_0.75.1_Linux-64bit.tar.gz && \
RUN curl -L -O https://github.com/gohugoio/hugo/releases/download/v0.76.5/hugo_0.76.5_Linux-64bit.tar.gz && \
tar xvfz hugo_0.76.5_Linux-64bit.tar.gz && \
sudo chown -R root:root ./hugo && \
sudo mv hugo /usr/local/bin && \
rm -f hugo_0.75.1_Linux-64bit.tar.gz LICENSE README.md
rm -f hugo_0.76.5_Linux-64bit.tar.gz LICENSE README.md
# Start code-server
ENTRYPOINT ["/usr/bin/entrypoint.sh", "--bind-addr", "0.0.0.0:8080", "."]