Skip to content

Commit

Permalink
Bump the docker group across 1 directory with 3 updates
Browse files Browse the repository at this point in the history
Bumps the docker group with 3 updates in the /cmd/kobs directory: node, golang and alpine.


Updates `node` from 22.0.0 to 22.7.0

Updates `golang` from 1.22.2 to 1.23.0

Updates `alpine` from 3.19.1 to 3.20.2

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 1, 2024
1 parent 5d2115b commit 2492315
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/kobs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
FROM --platform=linux/amd64 node:22.0.0 as app
FROM --platform=linux/amd64 node:22.7.0 as app
WORKDIR /kobs
COPY app /kobs/
RUN npm config set fetch-timeout 3600000
RUN npm clean-install
RUN export NODE_OPTIONS=--max-old-space-size=4096 && npm run build

FROM golang:1.22.2 as api
FROM golang:1.23.0 as api
WORKDIR /kobs
COPY go.mod go.sum /kobs/
RUN go mod download
COPY . .
RUN export CGO_ENABLED=0 && make build

FROM alpine:3.19.1
FROM alpine:3.20.2
RUN apk update && apk add --no-cache ca-certificates
RUN mkdir /kobs
COPY --from=api /kobs/bin/kobs /kobs
Expand Down

0 comments on commit 2492315

Please sign in to comment.