File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ COPY $service_alias-controller/ATTRIBUTION.md $work_dir/ATTRIBUTION.md
3232# Copy the go.mod and go.sum files for the service controller
3333COPY $service_alias-controller/go.mod $work_dir/go.mod
3434COPY $service_alias-controller/go.sum $work_dir/go.sum
35+ # Copy the controller code
36+ COPY $service_alias-controller/apis $work_dir/apis
37+ COPY $service_alias-controller/cmd $work_dir/cmd
38+ COPY $service_alias-controller/pkg $work_dir/pkg
3539
3640# Copy local runtime code to the container
3741COPY runtime/pkg $work_dir/../runtime/pkg
@@ -52,10 +56,6 @@ RUN go mod download
5256WORKDIR $work_dir
5357RUN go mod download
5458
55- # Now copy the go source code for the service controller...
56- COPY $service_alias-controller/apis $work_dir/apis
57- COPY $service_alias-controller/cmd $work_dir/cmd
58- COPY $service_alias-controller/pkg $work_dir/pkg
5959# Build
6060RUN GIT_VERSION=$service_controller_git_version && \
6161 GIT_COMMIT=$service_controller_git_commit && \
You can’t perform that action at this time.
0 commit comments