Skip to content

Commit

Permalink
Add support for dependabot (#3453)
Browse files Browse the repository at this point in the history
* Add support for dependabot

* review

---------

Co-authored-by: Falko Schindler <falko@zauberzeug.com>
  • Loading branch information
gaby and falkoschindler authored Aug 13, 2024
1 parent 167e1f8 commit 2afbce0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion fly.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.3-slim
FROM python:3.11-slim

LABEL maintainer="Zauberzeug GmbH <nicegui@zauberzeug.com>"

Expand Down
4 changes: 2 additions & 2 deletions release.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.3-slim as builder
FROM python:3.11-slim as builder

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC \
Expand All @@ -11,7 +11,7 @@ RUN python -m pip install --upgrade pip

RUN python -m pip install --upgrade libsass

FROM python:3.11.3-slim as release
FROM python:3.11-slim as release
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
ARG VERSION

Expand Down

0 comments on commit 2afbce0

Please sign in to comment.