Skip to content

Commit

Permalink
chore: fixing go get deprecation (#713)
Browse files Browse the repository at this point in the history
go get has been deprecated in favor of go install.
  • Loading branch information
tmvanetten authored Aug 10, 2022
1 parent a03b305 commit e8eb3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

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

0 comments on commit e8eb3d8

Please sign in to comment.