aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/integration/docker/server/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-29 23:18:04 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-29 23:18:04 +0300
commit4beb075783e8f1b4081e429eec78dd96c3be57ae (patch)
tree3def5952657bbf63a0204a01a88e2c11414fecf1 /test/integration/docker/server/Dockerfile
parentt/i/docker: reuse the root docker-compose.yml (diff)
downloadcgitize-4beb075783e8f1b4081e429eec78dd96c3be57ae.tar.gz
cgitize-4beb075783e8f1b4081e429eec78dd96c3be57ae.zip
rename Compose services, move directories around, etc.
Diffstat (limited to 'test/integration/docker/server/Dockerfile')
-rw-r--r--test/integration/docker/server/Dockerfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/integration/docker/server/Dockerfile b/test/integration/docker/server/Dockerfile
deleted file mode 100644
index 3ebe89b..0000000
--- a/test/integration/docker/server/Dockerfile
+++ /dev/null
@@ -1,23 +0,0 @@
-FROM alpine:3.15
-
-RUN apk --no-cache add bash git openssh-server tini && \
- 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
-
-ENTRYPOINT ["/sbin/tini", "--"]
-CMD ["/usr/sbin/sshd", "-D"]