Skip to content

Commit

Permalink
chore(deps): update docker (dockerfiles/dockerfile.test.v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
IK Renovate Bot committed May 30, 2024
1 parent 363a385 commit b9600e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.go.task
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/telia-oss/github-pr-resource
RUN curl -sL https://taskfile.dev/install.sh | sh
RUN ./bin/task build

FROM alpine:3.19 as resource
FROM alpine:3.20 as resource
COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource
RUN apk add --update --no-cache \
git \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.node-non-root
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Smaller images without npm/yarn
# If you want to achieve an even smaller image size than the -alpine, you can omit the npm/yarn like this:

ARG ALPINE_VERSION=3.19
ARG ALPINE_VERSION=3.20

FROM node:18-alpine${ALPINE_VERSION} AS builder
WORKDIR /build-stage
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.nodejs-rootless
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# docker build . -t ik-nodejs
# docker run -it --rm ik-nodejs

FROM node:20.13.1-slim
FROM node:20.14.0-slim

RUN apt-get update && \
apt-get install -y git curl dumb-init && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.test.v1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN unset GOPATH && go test -v ./... && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/check ./cmd/check && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/in ./cmd/in && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/out ./cmd/out
FROM alpine:3.19
FROM alpine:3.20
RUN mkdir -p /opt/resource
COPY --from=builder /code/out/* /opt/resource/
ENV VERSION_FILE /opt/resource/version
Expand Down

0 comments on commit b9600e9

Please sign in to comment.