diff options
| author | noah <noah@hackedu.io> | 2021-05-11 20:17:38 +1200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-11 10:17:38 +0200 |
| commit | add387ecfa5c59b34119eabd8b81c1daddcdc06e (patch) | |
| tree | baa5d5c63641505ac16aa849316b85e1bf741190 /Dockerfile | |
| parent | b47f7e961649acf4c9e7c98d575284a143707ce8 (diff) | |
feat: allow write-back to actual kustomization files (#200)
* feat: allow write-back to actual kustomization files #199
* fix: was not handling default path correctly
default is the source path
* fix: sort imports
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,9 @@ FROM golang:1.14.13 AS builder RUN mkdir -p /src/argocd-image-updater WORKDIR /src/argocd-image-updater +# cache dependencies as a layer for faster rebuilds +COPY go.mod go.sum ./ +RUN go mod download COPY . . RUN mkdir -p dist && \ |
