Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/init_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
]
runs-on: ubuntu-latest
name: Build and push Docker image
env:
base_image_tag: alpine-3.20.0
steps:
- name: Set release tag
shell: bash
Expand Down Expand Up @@ -119,6 +121,7 @@ jobs:
tags: ${{steps.set_docker_tags.outputs.DOCKER_TAGS}}
build-args: |
FILE=${{ matrix.agents.file }}
base_image_tag=${{ env.base_image_tag }}

- name: Slack Notification
if: always()
Expand Down
3 changes: 2 additions & 1 deletion lightrun-init-agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM alpine:latest
ARG base_image_tag=alpine-3.20.0

FROM lightruncom/prod-base:${base_image_tag}
ARG FILE

COPY lightrun-init-agent/$FILE /tmp/$FILE
Expand Down