Skip to content

Commit

Permalink
Bump base Alpine image (#2691)
Browse files Browse the repository at this point in the history
* Bump base Alpine image

* images
  • Loading branch information
halamix2 authored Dec 14, 2023
1 parent 18bf178 commit 0f9c79e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base Alpine with Node ----
FROM alpine:3.15.0 AS builder
FROM alpine:3.16.8 AS builder
ARG TAG_default_tag

RUN apk add --update nodejs npm
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# this is a Dockerfile for single deployment app - both backend and frontends

# ---- Base Alpine with Node ----
FROM alpine:3.15.0 AS builder
FROM alpine:3.16.8 AS builder
ARG TAG_default_tag

RUN apk add --update nodejs npm
Expand All @@ -25,7 +25,7 @@ RUN npm test 2>&1 && npm run build:docker
RUN cd /app/backend && npm run build

# ---- Serve ----
FROM alpine:3.15.0
FROM alpine:3.16.8
WORKDIR /app

RUN apk --no-cache upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base Alpine with Node ----
FROM alpine:3.15.0 AS base
FROM alpine:3.16.8 AS base
# install node
RUN apk add --update nodejs npm openssl nghttp2

Expand Down
2 changes: 1 addition & 1 deletion resources/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: backend
image: europe-docker.pkg.dev/kyma-project/dev/busola-backend:PR-2680
image: europe-docker.pkg.dev/kyma-project/dev/busola-backend:PR-2691
imagePullPolicy: Always
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion resources/web/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: busola
image: europe-docker.pkg.dev/kyma-project/dev/busola-web:PR-2681
image: europe-docker.pkg.dev/kyma-project/dev/busola-web:PR-2691
imagePullPolicy: Always
resources:
requests:
Expand Down

0 comments on commit 0f9c79e

Please sign in to comment.