fix: correct variable usage in git checkout command
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m1s

This commit is contained in:
2025-09-11 10:20:03 -05:00
parent 934a22b4bb
commit 4886bf3544

View File

@@ -46,7 +46,7 @@ WORKDIR /app
# Clone pa11y-dashboard repository
ARG PA11Y_VERSION=4.2.0
RUN git clone https://github.com/pa11y/pa11y-dashboard.git . && \
git checkout v${PA11Y_VERSION}
git checkout ${PA11Y_VERSION}
# Install dependencies and build
RUN npm ci --only=production && \