Skip to content

Commit

Permalink
Bump the docker group in /cmd/kobs with 2 updates (#639)
Browse files Browse the repository at this point in the history
Bumps the docker group in /cmd/kobs with 2 updates: node and golang.


Updates `node` from 21.7.1 to 22.0.0

Updates `golang` from 1.22.1 to 1.22.2

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 1, 2024
1 parent 5a9efed commit 028d06e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/kobs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM --platform=linux/amd64 node:21.7.1 as app
FROM --platform=linux/amd64 node:22.0.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.1 as api
FROM golang:1.22.2 as api
WORKDIR /kobs
COPY go.mod go.sum /kobs/
RUN go mod download
Expand Down

0 comments on commit 028d06e

Please sign in to comment.