Skip to content

Commit

Permalink
Bump the docker group in /cmd/kobs with 2 updates (#619)
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 20.11.1 to 21.7.1

Updates `golang` from 1.22.0 to 1.22.1

---
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 Mar 26, 2024
1 parent 06b505d commit 1558fb1
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:20.11.1 as app
FROM --platform=linux/amd64 node:21.7.1 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.0 as api
FROM golang:1.22.1 as api
WORKDIR /kobs
COPY go.mod go.sum /kobs/
RUN go mod download
Expand Down

0 comments on commit 1558fb1

Please sign in to comment.