Skip to content
Snippets Groups Projects
Verified Commit d22ffe22 authored by Thorge Petersen's avatar Thorge Petersen
Browse files

chore: removed unneccessary docker-compose file

parent 72c58368
No related branches found
No related tags found
No related merge requests found
Pipeline #1433 passed
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment