From e3edd1be01b093c98020f9dd5b9a319cbcabe750 Mon Sep 17 00:00:00 2001 From: brooke Date: Mon, 17 Mar 2025 21:54:23 -0400 Subject: [PATCH] update --- .github/workflows/container.yml | 2 +- Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 69d621b..50e376a 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -30,7 +30,7 @@ jobs: - name: Build Docker image run: | - docker buildx build --build-arg LAP_VAR=${{ github.event.inputs.version }} -t fung.uy/mycosystems/lapdev:${{ github.event.inputs.version }} . + docker buildx build --build-arg VERSION=${{ github.event.inputs.version }} -t fung.uy/mycosystems/lapdev:${{ github.event.inputs.version }} . - name: Push Docker image run: | diff --git a/Dockerfile b/Dockerfile index 9c6185b..c8120d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM debian:trixie-slim -ARG LAP_VER -ENV VERSION=${LAP_VER} +ARG VERSION # Install required dependencies RUN apt update && \