Skip to content
Snippets Groups Projects
Select Git revision
  • 360c82cef6d6eb44aa8bae7e16641e0ee43cc0df
  • master default
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.3.1
  • 0.2.1
  • 0.2.0
  • v0.2.0
9 results

README.rst

Blame
    • nimrod's avatar
      360c82ce
      Migrate to GitLab. · 360c82ce
      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.
      360c82ce
      History
      Migrate to GitLab.
      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"