Select Git revision
-
nimrod authored
- Replace tox tests with pre-commit hooks. - Replace Travis CI with GitLab CI. - Address issues from checks. - Format with Black. - Release with GitLab CI. - Update documentation.
nimrod authored- Replace tox tests with pre-commit hooks. - Replace Travis CI with GitLab CI. - Address issues from checks. - Format with Black. - Release with GitLab CI. - Update documentation.
Dockerfile 440 B
FROM gitlab/gitlab-runner:alpine-v13.6.0-rc1
RUN apk add --no-cache --update docker
COPY --chown=root:root entrypoint /entrypoint0
ENV DOCKER_VOLUMES=/var/run/docker.sock:/var/run/docker.sock \
RUNNER_EXECUTOR=docker \
DOCKER_PULL_POLICY=if-not-present
ENTRYPOINT [ "/entrypoint0" ]
CMD [ "run", "--user=gitlab-runner", "--working-directory=/home/gitlab-runner" ]
HEALTHCHECK CMD gitlab-runner list 2>&1 | grep -qF "$CI_SERVER_URL"