1 parent 5f91e70 commit 747f23fCopy full SHA for 747f23f
2 files changed
.github/workflows/run-extraction.yml
@@ -21,7 +21,9 @@ jobs:
21
22
- name: Build Podman Image
23
run: |
24
- podman build -t graph_analysis -f docker/Dockerfile .
+ podman build \
25
+ --build-arg CACHE_BUST=$(git rev-parse HEAD) \
26
+ -t graph-analysis -f docker/Dockerfile .
27
28
- name: Prepare Host Directories
29
docker/Dockerfile
@@ -24,4 +24,5 @@ COPY Main.py fetch_texts.py retweet.py ids_user.py config.py ./
VOLUME ["/app/resources", "/app/outputs", "/app/logs", "/app/properties"]
ENTRYPOINT ["python", "Main.py"]
-CMD ["--properties", "/app/properties/prop.json"]
+ARG CACHE_BUST
+RUN echo "Cache bust: $CACHE_BUST"
0 commit comments