blob: b61f4cd2cb123872b95c9b4e1fd3942b664aea9b [file] [log] [blame]
vexxhost-bota62d9312024-06-01 21:13:59 +02001# SPDX-License-Identifier: Apache-2.0
2# Atmosphere-Rebuild-Time: 2024-05-30T20:29:01Z
Mohammed Naser37694382024-04-02 21:11:31 -04003
Mohammed Naser19c6c8a2024-04-18 01:47:10 -04004ARG RELEASE
5
6FROM registry.atmosphere.dev/library/openstack-runtime:${RELEASE}
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04007RUN <<EOF bash -xe
8apt-get update -qq
9apt-get install -qq -y --no-install-recommends \
10 openssh-server \
11 openssh-client
12EOF
13RUN <<EOF bash -xe
14chown -R nova: /etc/ssh
15mkdir /var/run/sshd
16chmod 0755 /var/run/sshd
17EOF