blob: 7572665291a061f6499e88c0c506946dfbc569eb [file] [log] [blame]
Mohammed Naserc6392302024-01-04 00:43:02 -05001VERSION 0.7
2
Mohammed Naserc6392302024-01-04 00:43:02 -05003platform-image:
Mohammed Naser7a848bc2024-01-22 21:58:11 -05004 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 Naserc6392302024-01-04 00:43:02 -050014 SAVE IMAGE --push ghcr.io/vexxhost/atmosphere/nova-ssh:latest
15
16image:
17 BUILD --platform linux/amd64 --platform linux/arm64 +platform-image