Browse Source

chore: fixing go get deprecation (#713)

go get has been deprecated in favor of go install.
pull/741/head
Todd Van Etten 2 years ago
committed by GitHub
parent
commit
e8eb3d83c3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docker/dev/Dockerfile

+ 1
- 1
docker/dev/Dockerfile View File

@@ -6,7 +6,7 @@ RUN apk update && apk add --no-cache \
gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig xdg-utils gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig xdg-utils


# install go package. # install go package.
RUN go get github.com/mingrammer/round
RUN go install github.com/mingrammer/round@latest


# install fonts # install fonts
RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \ RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \


Loading…
Cancel
Save