Sfoglia il codice sorgente

chore: fixing go get deprecation (#713)

go get has been deprecated in favor of go install.
pull/741/head
Todd Van Etten 1 anno fa
committed by GitHub
parent
commit
e8eb3d83c3
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      docker/dev/Dockerfile

+ 1
- 1
docker/dev/Dockerfile Vedi 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

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


Caricamento…
Annulla
Salva