diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml index 1abe212..7089bb3 100644 --- a/.github/workflows/docker-publish.yaml +++ b/.github/workflows/docker-publish.yaml @@ -66,7 +66,7 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | - type=raw,value=alpine_edge-node_18 + type=raw,value=alpine_3.18-node_18 labels: | org.opencontainers.image.revision=${{ env.SHA }} @@ -79,7 +79,5 @@ jobs: platforms: "linux/amd64,linux/arm64" context: . push: ${{ github.event_name != 'pull_request' }} - load: ${{ github.event_name == 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - diff --git a/Dockerfile b/Dockerfile index 70c4419..c43d744 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.14@sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae +FROM alpine:3.18@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978 LABEL maintainer="Atomist " @@ -9,11 +9,11 @@ RUN apk add --no-cache \ # Install Node.js RUN apk add --no-cache \ - nodejs=18.18.0-r0 + nodejs=18.18.2-r0 # Install Git RUN apk add --no-cache \ - git=2.42.0-r0 + git=2.40.1-r0 # ENV VARs needed for Node.js ENV BLUEBIRD_WARNINGS=0 \