From c9e74bd575146e5112739e9c609e870b74c13262 Mon Sep 17 00:00:00 2001 From: Nguyen Thai Date: Wed, 11 Oct 2023 10:59:06 +0700 Subject: [PATCH] Added support for arm64 builds (cherry picked from commit aa688c5d937d9538068cdb73c4f9e4cf394c2c64) --- .github/workflows/image.yaml | 2 ++ Dockerfile | 11 +++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index daf2a00c5..cbee58f3e 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -45,6 +45,7 @@ jobs: uses: docker/build-push-action@v4 with: push: true + platforms: "linux/amd64,linux/arm64" cache-from: | type=gha cache-to: | @@ -90,6 +91,7 @@ jobs: uses: docker/build-push-action@v4 with: push: true + platforms: "linux/amd64,linux/arm64" cache-from: | type=gha cache-to: | diff --git a/Dockerfile b/Dockerfile index def87bf75..abc53fc3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ +ARG FLUTTER_VERSION=3.10.6 # Stage 1 - Install dependencies and build the app # This matches the flutter version on our CI/CD pipeline on Github -FROM ghcr.io/cirruslabs/flutter:3.10.6 AS build-env +FROM --platform=amd64 ghcr.io/cirruslabs/flutter:${FLUTTER_VERSION} AS build-env # Set directory to Copy App WORKDIR /app @@ -8,11 +9,13 @@ WORKDIR /app COPY . . # Precompile tmail flutter -RUN bash prebuild.sh && flutter build web --release +RUN bash prebuild.sh +# Build flutter for web +RUN flutter build web --release # Stage 2 - Create the run-time image -FROM nginx:mainline -RUN chmod -R 755 /usr/share/nginx/html && apt install -y gzip +FROM nginx:alpine +RUN apk add gzip COPY --from=build-env /app/server/nginx.conf /etc/nginx COPY --from=build-env /app/build/web /usr/share/nginx/html