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.
2 parents 4429413 + e8d1585 commit 938c596Copy full SHA for 938c596
.github/workflows/init_container.yaml
@@ -40,6 +40,8 @@ jobs:
40
]
41
runs-on: ubuntu-latest
42
name: Build and push Docker image
43
+ env:
44
+ base_image_tag: alpine-3.20.0
45
steps:
46
- name: Set release tag
47
shell: bash
@@ -119,6 +121,7 @@ jobs:
119
121
tags: ${{steps.set_docker_tags.outputs.DOCKER_TAGS}}
120
122
build-args: |
123
FILE=${{ matrix.agents.file }}
124
+ base_image_tag=${{ env.base_image_tag }}
125
126
- name: Slack Notification
127
if: always()
lightrun-init-agent/Dockerfile
@@ -1,5 +1,6 @@
1
-FROM alpine:latest
+ARG base_image_tag=alpine-3.20.0
2
3
+FROM lightruncom/prod-base:${base_image_tag}
4
ARG FILE
5
6
COPY lightrun-init-agent/$FILE /tmp/$FILE
0 commit comments