Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 12/amd64-alpine3.17.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM node:18.19.0-alpine3.17

RUN apk --no-cache add bash build-base git python3 curl tar zstd
RUN npm install -g npm@9
11 changes: 11 additions & 0 deletions 12/arm64v8-alpine3.17.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM alpine AS builder

ENV QEMU_URL=https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-aarch64.tar.gz
RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1

FROM --platform=linux/arm64 node:18.19.0-alpine3.17

COPY --from=builder qemu-aarch64-static /usr/bin

RUN apk --no-cache add bash build-base git python3 curl tar zstd
RUN npm install -g npm@9