Compare commits

...

2 commits

Author SHA1 Message Date
Jannis Portmann 6b36ccc87a Test testing
Some checks failed
continuous-integration/drone/push Build is failing
2024-02-11 19:17:59 +01:00
Jannis Portmann 0633b3efe9 Update base-image 2024-02-11 19:17:43 +01:00
2 changed files with 12 additions and 1 deletions

View file

@ -3,6 +3,17 @@ type: docker
name: build-latest
steps:
- name: test
image: python:3.12-slim-bookworm
settings:
repo: git.thisfro.ch/pflaenz.li/pflaenzli
commands:
- cd pflaenzli
- pip install coverage
- pip install -r requirements.txt
- coverage run --branch --source='.' manage.py test
- coverage report -m
- name: build-image
image: plugins/docker
settings:

View file

@ -1,4 +1,4 @@
FROM python:3.11-slim-bullseye
FROM python:3.12-slim-bookworm
RUN apt update && apt install -y libpq-dev nginx gettext