From d22ffe22e5a31d924742e4b5a251c7fd53ffa0e1 Mon Sep 17 00:00:00 2001 From: Thorge Petersen <petersen@rz.uni-kiel.de> Date: Fri, 10 Jan 2025 08:45:14 +0100 Subject: [PATCH] chore: removed unneccessary docker-compose file --- docker-compose.yaml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index 2bf1a85..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,28 +0,0 @@ -version: '3.8' -services: - lint: - image: node - command: > - sh -c " - npm install -g markdownlint markdownlint-cli && - markdownlint '**/*.md' --ignore node_modules | tee lint.log - " - volumes: - - .:/app - - /app/node_modules - ruff: - image: python:3.10 - command: > - bash -c " - apt-get update && - apt-get install -y libgdal-dev && - python3 -m pip install --user pipx && - python3 -m pipx ensurepath && - source ~/.bashrc && - pipx install poetry && - poetry install && - poetry run ruff check . - " - volumes: - - .:/app - working_dir: /app -- GitLab