We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbc1619 commit f998943Copy full SHA for f998943
1 file changed
Dockerfile
@@ -0,0 +1,16 @@
1
+FROM python:3.9.18-slim
2
+
3
+RUN --mount=type=cache,target=/var/cache/apt \
4
+ apt-get update && apt-get install -y git git-lfs
5
6
+WORKDIR /usr/src/app
7
8
+COPY release-requirements.txt .
9
+RUN --mount=type=cache,target=/root/.cache/pip \
10
+ pip install -r release-requirements.txt
11
12
+COPY . .
13
14
+ pip install .
15
16
+ENTRYPOINT [ "github-backup" ]
0 commit comments