我使用go-jet
從資料庫產生模型,因此我需要在go build
之前運行jet
。我需要透過 go install
安裝它,否則 docker 找不到 jet
執行檔。我遇到了一個問題:
當我重建我的應用程式時,docker 每次都會重新下載 go-jet(需要 60-80 秒)。
是否有更好的方法來產生(或快取jet庫)?安裝時間太長
我嘗試在 Dockerfile 中快取 jet
,但它再次重新下載:
RUN --mount=type=cache,target=/go/pkg/mod/ \ go install github.com/go-jet/jet/v2/cmd/jet@latest
我的 Dockerfile:
FROM golang:latest WORKDIR /app COPY go.mod . COPY go.sum . RUN go mod download COPY . . RUN go install github.com/go-jet/jet/v2/cmd/jet@latest CMD sh deployments/startup.sh
我的startup.sh:
jet -dsn="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=disable" -schema=public -path=.gen cd cmd/app go build ./app
還有我的 docker-compose,以防萬一:
version: '3.9' x-common-variables: &database-credentials POSTGRES_DB: ${POSTGRES_DB} POSTGRES_USER: ${POSTGRES_USER} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} POSTGRES_HOST: ${POSTGRES_HOST} POSTGRES_PORT: ${POSTGRES_PORT} services: cache: image: redis:latest restart: always ports: - "6379:6379" command: redis-server environment: - REDIS_PORT=6379 database: image: postgres:latest container_name: db environment: <<: *database-credentials ports: - "5433:5432" healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ] interval: 5s timeout: 5s retries: 10 migrate: image: migrate/migrate volumes: - ../internal/app/storage/postgres/migrations:/migrations command: -path /migrations -database "postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=disable" up depends_on: database: condition: service_healthy webapi: image: webapi build: ../ ports: - "8080:8080" depends_on: - migrate environment: <<: *database-credentials
找到了一個非常簡單的解決方案。我需要將 go install
放在 COPY 之前。 .
。發生了什麼:當 docker 偵測到專案中的變更時,它刪除了應用程式快取(行 COPY . .
)和所有以下行(包括 go install
)。
我的最終 Dockerfile:
... RUN go install github.com/go-jet/jet/v2/cmd/jet@latest COPY . . ...
以上是go install 在 dockerfile 中需要花費很多時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!