diff --git a/.github/workflows/manual-deploy-ten-gateway-frontend.yml b/.github/workflows/manual-deploy-ten-gateway-frontend.yml index 8ac6e17e70..46b2251f2a 100644 --- a/.github/workflows/manual-deploy-ten-gateway-frontend.yml +++ b/.github/workflows/manual-deploy-ten-gateway-frontend.yml @@ -46,7 +46,7 @@ jobs: echo "BRANCH_NAME=${GITHUB_REF_NAME}" >> $GITHUB_ENV - name: 'Set up Docker' - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3.6.1 - name: 'Login to Azure docker registry' uses: azure/docker-login@v1 diff --git a/tools/walletextension/frontend/Dockerfile b/tools/walletextension/frontend/Dockerfile index 51cd8978d0..0e15b89e8a 100644 --- a/tools/walletextension/frontend/Dockerfile +++ b/tools/walletextension/frontend/Dockerfile @@ -10,11 +10,8 @@ WORKDIR /usr/src/app # Install dependencies in a separate layer to optimize caching COPY package*.json ./ -# TODO: Remove this line -RUN ls -al - # Install dependencies -RUN npm install +RUN npm ci # Copy the rest of the application code COPY . .