This commit is contained in:
brooke 2025-03-17 21:54:23 -04:00
parent 062432f843
commit e3edd1be01
2 changed files with 2 additions and 3 deletions

View file

@ -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: |

View file

@ -1,7 +1,6 @@
FROM debian:trixie-slim
ARG LAP_VER
ENV VERSION=${LAP_VER}
ARG VERSION
# Install required dependencies
RUN apt update && \