Skip to content

Commit 6c89ae5

Browse files
authored
add dependabot (#39)
1 parent bc4036b commit 6c89ae5

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "pip"
8+
directory: "/python"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "pip"
12+
directory: "/systemd"
13+
schedule:
14+
interval: "weekly"
15+
- package-ecosystem: "docker"
16+
directory: "/"
17+
schedule:
18+
interval: "weekly"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED=1
99

1010
# Install dependencies
1111
COPY ./python/requirements.txt requirements.txt
12-
RUN pip install -r requirements.txt
12+
RUN pip install --no-cache-dir -r requirements.txt
1313

1414
# Expose the app
1515
EXPOSE 5000

0 commit comments

Comments
 (0)