mirror of
https://github.com/claunia/cross-docks.git
synced 2025-12-16 11:14:44 +00:00
Add PowerPC for AmigaOS.
This commit is contained in:
20
cross-powerpc-amigaos/Dockerfile
Normal file
20
cross-powerpc-amigaos/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM amigadev/crosstools:ppc-amigaos
|
||||
|
||||
LABEL maintainer="claunia@claunia.com"
|
||||
|
||||
RUN apt-get update && apt-get install -y ssh gdb cmake rsync tar python && apt-get clean
|
||||
|
||||
RUN ( \
|
||||
echo 'LogLevel DEBUG2'; \
|
||||
echo 'PermitRootLogin yes'; \
|
||||
echo 'PasswordAuthentication yes'; \
|
||||
echo 'Subsystem sftp /usr/lib/openssh/sftp-server'; \
|
||||
) > /etc/ssh/sshd_config_remote_dev \
|
||||
&& mkdir /run/sshd
|
||||
|
||||
RUN useradd -m user \
|
||||
&& yes password | passwd user
|
||||
|
||||
RUN usermod -s /bin/bash user
|
||||
|
||||
CMD ["/usr/sbin/sshd" "-D" "-e" "-f" "/etc/ssh/sshd_config_remote_dev"]
|
||||
Reference in New Issue
Block a user