diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8ddbcdc..9d61f23 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,14 +24,14 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build docker container - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: ./ load: true tags: | ghcr.io/scout-ch/thilo/thilo_frontend:latest - name: Push docker container - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true context: ./ diff --git a/Dockerfile b/Dockerfile index aaf5749..d8079c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22.2.0-alpine +FROM node:23.1.0-alpine ############################################ # General Docker image configuration