Skip to content

Commit 1f62dd0

Browse files
authored
fix: Docker version releases by removing arm/v6 and arm/v7 support (#8976)
1 parent f9c39ed commit 1f62dd0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
check-docker:
118118
name: Docker Build
119119
timeout-minutes: 15
120-
runs-on: ubuntu-20.04
120+
runs-on: ubuntu-latest
121121
steps:
122122
- name: Checkout repository
123123
uses: actions/checkout@v4

Diff for: .github/workflows/release-automated.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
env:
4343
REGISTRY: docker.io
4444
IMAGE_NAME: parseplatform/parse-server
45-
runs-on: ubuntu-20.04
45+
runs-on: ubuntu-latest
4646
permissions:
4747
contents: read
4848
packages: write
@@ -78,7 +78,7 @@ jobs:
7878
uses: docker/build-push-action@v3
7979
with:
8080
context: .
81-
platforms: linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64/v8
81+
platforms: linux/amd64, linux/arm64/v8
8282
push: ${{ github.event_name != 'pull_request' }}
8383
tags: ${{ steps.meta.outputs.tags }}
8484
labels: ${{ steps.meta.outputs.labels }}

Diff for: .github/workflows/release-manual-docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
IMAGE_NAME: parseplatform/parse-server
1515
jobs:
1616
build:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-latest
1818
permissions:
1919
contents: read
2020
packages: write
@@ -51,7 +51,7 @@ jobs:
5151
uses: docker/build-push-action@v3
5252
with:
5353
context: .
54-
platforms: linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64/v8
54+
platforms: linux/amd64, linux/arm64/v8
5555
push: ${{ github.event_name != 'pull_request' }}
5656
tags: ${{ steps.meta.outputs.tags }}
5757
labels: ${{ steps.meta.outputs.labels }}

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
############################################################
22
# Build stage
33
############################################################
4-
FROM node:18-alpine AS build
4+
FROM node:lts-alpine AS build
55

66
RUN apk --no-cache add git
77
WORKDIR /tmp
@@ -24,7 +24,7 @@ RUN npm ci --omit=dev --ignore-scripts \
2424
############################################################
2525
# Release stage
2626
############################################################
27-
FROM node:18-alpine AS release
27+
FROM node:lts-alpine AS release
2828

2929
VOLUME /parse-server/cloud /parse-server/config
3030

0 commit comments

Comments
 (0)