소스 검색
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
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
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 \ |
|
|
|