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 && \