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 964f3e4 commit b4a94b1Copy full SHA for b4a94b1
.github/workflows/docker-publish.yml
@@ -56,3 +56,5 @@ jobs:
56
push: ${{ github.event_name != 'pull_request' }}
57
tags: ${{ steps.meta.outputs.tags }}
58
labels: ${{ steps.meta.outputs.labels }}
59
+ cache-from: type=gha
60
+ cache-to: type=gha,mode=max
Dockerfile
@@ -13,6 +13,9 @@ COPY src ./src
13
COPY config.toml ./
14
COPY templates ./templates
15
16
+# To trigger cargo to recompile
17
+RUN touch src/main.rs
18
+
19
RUN cargo install --path . --offline
20
21
FROM debian:buster-slim
0 commit comments