This repository has been archived on 2023-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
pleroma-ansible-playbook/test/pleroma_test_env/Dockerfile
Dan Anglin 20667709b2
ci: test environment docker image for CI pipelines
This commit includes a Dockerfile for building a test environment for
future CI pipelines. This commit also refactors the GitLab CI pipeline
files by splitting the jobs into different files:

- .gitlab-ci.yml: Global CI pipeline file.
- .gitlab/ci/test-env.gitlab-ci.yml: Jobs to test and publish the
docker image for the test environment.
- .gitlab/ci/playbook.gitlab-ci.yml: Jobs to test and publish the
docker image for the pleroma playbook
- .gitlab/ci/templates/docker.gitlab-ci.yml: Template jobs for
testing and publishing docker images.

Part of dananglin/pleroma-ansible-playbook#17
2020-07-10 07:22:39 +01:00

30 lines
892 B
Docker

FROM dockage/alpine:3.10-openrc
ARG TEST_ENV_UID=1100
ARG TEST_ENV_USER=admin
ARG TEST_ENV_PASSWORD
ARG SSH_DIR=/home/admin/.ssh
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
RUN apk add --no-cache \
bash=5.0.0-r0 \
openssh=8.1_p1-r0 \
sudo=1.8.27-r2 \
python3=3.7.7-r0 \
&& \
adduser -u ${TEST_ENV_UID} -s /bin/bash -D ${TEST_ENV_USER} && \
echo ${TEST_ENV_USER}:${TEST_ENV_PASSWORD} | chpasswd && \
mkdir ${SSH_DIR} && \
chown ${TEST_ENV_USER}:${TEST_ENV_USER} ${SSH_DIR} && chmod 0700 ${SSH_DIR} && \
touch ${SSH_DIR}/authorized_keys && \
chown ${TEST_ENV_USER}:${TEST_ENV_USER} ${SSH_DIR}/authorized_keys && \
chmod 0600 ${SSH_DIR}/authorized_keys && \
rc-status && \
touch /run/openrc/softlevel
COPY files/entrypoint /entrypoint
COPY files/admin-sudoers /etc/sudoers.d/admin
EXPOSE 22 80 443
CMD ["/entrypoint"]