mirror of
https://github.com/linuxserver/docker-openssh-server.git
synced 2026-01-19 19:33:50 +08:00
42 lines
1.2 KiB
Docker
42 lines
1.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG OPENSSH_RELEASE
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="aptalca"
|
|
|
|
RUN \
|
|
echo "**** install runtime packages ****" && \
|
|
apk add --no-cache --upgrade \
|
|
logrotate \
|
|
nano \
|
|
netcat-openbsd \
|
|
sudo && \
|
|
echo "**** install openssh-server ****" && \
|
|
if [ -z ${OPENSSH_RELEASE+x} ]; then \
|
|
OPENSSH_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/main/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && \
|
|
awk '/^P:openssh-server-pam$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
|
|
fi && \
|
|
apk add --no-cache \
|
|
openssh-client==${OPENSSH_RELEASE} \
|
|
openssh-server-pam==${OPENSSH_RELEASE} \
|
|
openssh-sftp-server==${OPENSSH_RELEASE} && \
|
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
|
echo "**** setup openssh environment ****" && \
|
|
sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \
|
|
usermod --shell /bin/bash abc && \
|
|
rm -rf \
|
|
/tmp/* \
|
|
$HOME/.cache
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
EXPOSE 2222
|
|
|
|
VOLUME /config
|