We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4036b commit 6c89ae5Copy full SHA for 6c89ae5
.github/dependabot.yml
@@ -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
10
11
12
+ directory: "/systemd"
13
14
15
+ - package-ecosystem: "docker"
16
17
18
Dockerfile
@@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED=1
# Install dependencies
COPY ./python/requirements.txt requirements.txt
-RUN pip install -r requirements.txt
+RUN pip install --no-cache-dir -r requirements.txt
# Expose the app
EXPOSE 5000
0 commit comments