浏览代码

chore: fixing go get deprecation (#713)

go get has been deprecated in favor of go install.
pull/741/head
Todd Van Etten 2 年前
committed by GitHub
父节点
当前提交
e8eb3d83c3
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      docker/dev/Dockerfile

+ 1
- 1
docker/dev/Dockerfile 查看文件

@@ -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 \


正在加载...
取消
保存