Fix typo in absolute path to go binary
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Steven Polley 2020-10-23 20:47:26 +00:00
parent 847fcba644
commit f58b1daf02
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ RUN curl -L -O https://dl.google.com/go/go1.15.3.linux-amd64.tar.gz && \
rm -f go1.15.3.linux-amd64.tar.gz
# Install OpenCV (via GoCV bindings)
RUN /usr/local/bin/go get -u -d gocv.io/x/gocv && \
RUN /usr/local/go/bin/go get -u -d gocv.io/x/gocv && \
cd /home/coder/go/src/gocv.io/x/gocv && \
make install && \
make clean