Mohammed Naser | c639230 | 2024-01-04 00:43:02 -0500 | [diff] [blame] | 1 | VERSION 0.7 |
| 2 | |
Mohammed Naser | c639230 | 2024-01-04 00:43:02 -0500 | [diff] [blame] | 3 | platform-image: |
Mohammed Naser | 7a848bc | 2024-01-22 21:58:11 -0500 | [diff] [blame] | 4 | FROM ../base+image |
| 5 | DO ../+CREATE_PROJECT_USER \ |
| 6 | --PROJECT=nova \ |
| 7 | --SHELL=/bin/bash |
| 8 | DO ../+APT_INSTALL \ |
| 9 | --PACKAGES "openssh-server openssh-client" |
| 10 | RUN \ |
| 11 | chown -R nova: /etc/ssh && \ |
| 12 | mkdir /var/run/sshd && \ |
| 13 | chmod 0755 /var/run/sshd |
Mohammed Naser | c639230 | 2024-01-04 00:43:02 -0500 | [diff] [blame] | 14 | SAVE IMAGE --push ghcr.io/vexxhost/atmosphere/nova-ssh:latest |
| 15 | |
| 16 | image: |
| 17 | BUILD --platform linux/amd64 --platform linux/arm64 +platform-image |