Skip to content

Commit

Permalink
Merge pull request #180 from mendersoftware/dependabot/docker/alpine-…
Browse files Browse the repository at this point in the history
…3.15.0

Changelog:All: Bump alpine from 3.14.2 to 3.15.0
  • Loading branch information
tranchitella committed Jan 3, 2022
2 parents 6cbd72c + c5cc0ea commit 4bf3595
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mkdir -p /go/src/github.com/mendersoftware/workflows
COPY . /go/src/github.com/mendersoftware/workflows
RUN cd /go/src/github.com/mendersoftware/workflows && env CGO_ENABLED=1 go build

FROM alpine:3.14.2
FROM alpine:3.15.0
RUN apk add --no-cache ca-certificates xz
RUN mkdir -p /etc/workflows
COPY ./config.yaml /etc/workflows
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.acceptance-testing
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY . /go/src/github.com/mendersoftware/workflows
RUN cd /go/src/github.com/mendersoftware/workflows && \
env CGO_ENABLED=0 go test -c -o workflows-test -coverpkg $(go list ./... | grep -v vendor | grep -v mocks | grep -v test | tr '\n' ,)

FROM alpine:3.14.2
FROM alpine:3.15.0
RUN apk add --no-cache ca-certificates xz
RUN mkdir -p /etc/workflows
COPY ./config.yaml /etc/workflows
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.acceptance-testing.worker
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY . /go/src/github.com/mendersoftware/workflows
RUN cd /go/src/github.com/mendersoftware/workflows && \
env CGO_ENABLED=0 go test -c -o workflows-test -coverpkg $(go list ./... | grep -v vendor | grep -v mocks | grep -v test | tr '\n' ,)

FROM alpine:3.14.2
FROM alpine:3.15.0
RUN apk add --no-cache ca-certificates xz
COPY --from=builder /go/src/github.com/mendersoftware/workflows/workflows-test /usr/bin

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mkdir -p /go/src/github.com/mendersoftware/workflows
COPY . /go/src/github.com/mendersoftware/workflows
RUN cd /go/src/github.com/mendersoftware/workflows && env CGO_ENABLED=1 go build

FROM alpine:3.14.2
FROM alpine:3.15.0
RUN apk add --no-cache ca-certificates xz
COPY --from=builder /go/src/github.com/mendersoftware/workflows/workflows /usr/bin

Expand Down

0 comments on commit 4bf3595

Please sign in to comment.