| gio | ec744fa | 2025-05-20 12:47:03 +0400 | [diff] [blame] | 1 | FROM library/node:24.0.2-alpine3.20 |
| 2 | |||||
| 3 | ARG TARGETARCH | ||||
| 4 | |||||
| 5 | RUN apk update | ||||
| gio | b33b2a9 | 2025-06-13 18:42:45 +0400 | [diff] [blame^] | 6 | # TODO(gio): git and openssh is not generally required, we need it for canvas. |
| 7 | # Instead allow dodo-app definition to include required tool list. | ||||
| 8 | RUN apk add gcc g++ git make musl-dev python3 py3-setuptools openssh-keygen openssh | ||||
| gio | ec744fa | 2025-05-20 12:47:03 +0400 | [diff] [blame] | 9 | |
| 10 | COPY app-runner_${TARGETARCH} /usr/bin/app-runner | ||||