blob: 1b8df661cf4a817430e49c686ef3d29abd7492f3 [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 Naser1dfea6b2024-02-09 01:04:26 -050014 ARG REGISTRY=ghcr.io/vexxhost/atmosphere
Mohammed Naser12207172024-02-05 18:49:35 -050015 SAVE IMAGE --push ${REGISTRY}/nova-ssh:latest
Mohammed Naserc6392302024-01-04 00:43:02 -050016
17image:
18 BUILD --platform linux/amd64 --platform linux/arm64 +platform-image