Skip to content

Commit

Permalink
Build docker image for multiple architectures including ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
hughns committed Jan 19, 2023
1 parent 8ee62c3 commit b993bc0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker-publish.yml
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v2
with:
Expand All @@ -42,3 +45,4 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,4 +1,4 @@
FROM docker.io/node:alpine as builder
FROM --platform=${BUILDPLATFORM} docker.io/node:alpine as builder
RUN apk add --no-cache git python3 build-base

WORKDIR /app
Expand All @@ -10,7 +10,7 @@ RUN yarn install
COPY . /app
RUN yarn build

FROM docker.io/nginx:alpine
FROM --platform=${BUILDPLATFORM} docker.io/nginx:alpine

# Copy the dynamic config script
COPY ./docker/dynamic-config.sh /docker-entrypoint.d/99-dynamic-config.sh
Expand Down
4 changes: 3 additions & 1 deletion doc/docker.md
Expand Up @@ -35,7 +35,9 @@ To stop the container, simply hit `ctrl+c`.

In this repository, create a Docker image:

```
```sh
# Enable BuildKit https://docs.docker.com/develop/develop-images/build_enhancements/
export DOCKER_BUILDKIT=1
docker build -t hydrogen .
```

Expand Down

0 comments on commit b993bc0

Please sign in to comment.