We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec740d0 commit 4589178Copy full SHA for 4589178
2 files changed
โ.github/workflows/upload_docker_image_to_acr.ymlโ
@@ -52,6 +52,8 @@ jobs:
52
push: true # ๋น๋ ํ ํธ์ ์คํ
53
tags: ${{ steps.meta.outputs.tags }} # ์ metadata step์์ ์์ฑ๋ ํ๊ทธ ์ฌ์ฉ
54
labels: ${{ steps.meta.outputs.labels }} # ์ metadata step์์ ์์ฑ๋ ๋ผ๋ฒจ ์ฌ์ฉ
55
+ build-args: |
56
+ CACHEBUST=${{ github.sha }}
57
58
# 6. ACR์ ํธ์๋ ์ด๋ฏธ์ง ํ์ธ
59
- name: Verify pushed image
โDockerfileโ
@@ -21,6 +21,9 @@ WORKDIR /app
21
COPY --from=deps /app/node_modules ./node_modules
22
COPY . .
23
24
+# Add cache-busting layer
25
+ARG CACHEBUST=1
26
+
27
# Set environment variables
28
ENV NEXT_TELEMETRY_DISABLED 1
29
ENV NODE_ENV production
0 commit comments