File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ENV APP_NAME=${APP_NAME}
1111RUN echo "Build of $APP_NAME started"
1212
1313RUN apt-get update -y && apt-get install --no-install-recommends -y ca-certificates unzip curl libc-bin libc6 \
14- && apt-get clean && rm -f /var/lib/apt/lists/*_*
14+ && apt-get clean && rm -f /var/lib/apt/lists/*_*
1515
1616WORKDIR /app
1717COPY pkg pkg
@@ -32,7 +32,7 @@ RUN curl -sL https://github.com/google/protobuf/releases/download/v3.3.0/protoc-
3232WORKDIR /app
3333RUN go install github.com/mgechev/
[email protected] 3434RUN go install gotest.tools/
[email protected] 35- RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
35+ RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.7
3636
3737CMD [ "/bin/bash" , "-c \" while sleep 1000; do :; done\" " ]
3838
@@ -48,7 +48,7 @@ LABEL org.opencontainers.image.source https://github.com/semaphoreio/semaphore
4848# postgresql-client needs to be installed here too,
4949# otherwise the createdb command won't work.
5050RUN apt-get update -y && apt-get install --no-install-recommends -y ca-certificates \
51- && apt-get clean && rm -f /var/lib/apt/lists/*_*
51+ && apt-get clean && rm -f /var/lib/apt/lists/*_*
5252
5353# We don't need Docker health checks, since these containers
5454# are intended to run in Kubernetes pods, which have probes.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ ENV APP_NAME=${APP_NAME}
1111RUN echo "Build of $APP_NAME started"
1212
1313RUN apt-get update -y && apt-get install --no-install-recommends -y ca-certificates unzip curl libc-bin libc6 \
14- && apt-get clean && rm -f /var/lib/apt/lists/*_*
14+ && apt-get clean && rm -f /var/lib/apt/lists/*_*
1515
1616WORKDIR /tmp
1717RUN curl -sL https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip -o protoc && \
@@ -22,8 +22,8 @@ WORKDIR /app
2222
2323RUN go install github.com/mgechev/
[email protected] 2424RUN go install gotest.tools/
[email protected] 25- RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
26- RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
25+ RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.7
26+ RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
2727
2828FROM base AS dev
2929
Original file line number Diff line number Diff line change @@ -61,9 +61,9 @@ RUN curl -sL https://github.com/golang-migrate/migrate/releases/download/v4.18.1
6161
6262WORKDIR /app
6363RUN go install github.com/mgechev/
[email protected] 64- RUN go install gotest.tools/gotestsum@latest
65- RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
66- RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
64+ RUN go install gotest.tools/gotestsum@v1.12.1
65+ RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
66+ RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.8
6767
6868CMD [ "/bin/bash" , "-c \" while sleep 1000; do :; done\" " ]
6969
You canβt perform that action at this time.
0 commit comments