Skip to content

Commit

Permalink
Dockerfiles: broken dependency fix (git)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 committed Jan 9, 2025
1 parent ae860a4 commit 543610b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/etos-executionspace/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/executionspace
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make executionspace
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make executionspace

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-iut/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/iut
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make iut
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make iut

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-logarea/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/logarea
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make logarea
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make logarea

FROM alpine:3.17.3
ARG TZ
Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-sse/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
WORKDIR /tmp/sse
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.45.2-r0 && make sse
RUN apk add --no-cache make=4.4.1-r2 git=2.47.1-r0 && make sse

FROM alpine:3.17.3
ARG TZ
Expand Down

0 comments on commit 543610b

Please sign in to comment.