| gio | cbbcf05 | 2025-04-22 16:49:44 +0400 | [diff] [blame] | 1 | FROM denoland/deno:alpine-2.2.0 |
| 2 | |||||
| 3 | ARG TARGETARCH | ||||
| 4 | |||||
| gio | b33b2a9 | 2025-06-13 18:42:45 +0400 | [diff] [blame^] | 5 | RUN apk update |
| 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 openssh-keygen openssh | ||||
| 9 | |||||
| gio | cbbcf05 | 2025-04-22 16:49:44 +0400 | [diff] [blame] | 10 | COPY app-runner_${TARGETARCH} /usr/bin/app-runner |