diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-29 23:36:47 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-30 00:11:53 +0300 |
commit | f305c205aec131d91b3ff9f0efc016ee767a8c44 (patch) | |
tree | ae45bc5acb738c7003266370a65c2d5becbbf3ab /.ci/docker/server/Dockerfile | |
parent | Travis: lint the config (diff) | |
download | cgitize-f305c205aec131d91b3ff9f0efc016ee767a8c44.tar.gz cgitize-f305c205aec131d91b3ff9f0efc016ee767a8c44.zip |
bye-bye, Travisno_more_travis
Diffstat (limited to '.ci/docker/server/Dockerfile')
-rw-r--r-- | .ci/docker/server/Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.ci/docker/server/Dockerfile b/.ci/docker/server/Dockerfile new file mode 100644 index 0000000..a6283d0 --- /dev/null +++ b/.ci/docker/server/Dockerfile @@ -0,0 +1,22 @@ +FROM alpine:3.11 + +RUN apk --no-cache add bash git openssh-server && \ + echo 'root:root' | chpasswd && \ + git config --global user.name 'John Doe' && \ + git config --global user.email 'John.Doe@example.com' && \ + sed -ri 's/^#?PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config + +WORKDIR /root + +COPY ["ssh/server_key", "/etc/ssh/ssh_host_ed25519_key"] +COPY ["ssh/server_key.pub", "/etc/ssh/ssh_host_ed25519_key.pub"] +COPY ["ssh/client_key.pub", "./.ssh/authorized_keys"] + +RUN chmod 0600 -- /etc/ssh/ssh_host_ed25519_key && \ + chmod 0700 -- ./.ssh/ && \ + chmod 0600 -- ./.ssh/authorized_keys + +COPY ["server/setup_repo.sh", "./"] +RUN ./setup_repo.sh + +CMD ["/usr/sbin/sshd", "-D"] |