From c1d002447242dc093a26b6b605eab310b848942f Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 26 May 2024 09:45:16 +0200 Subject: [PATCH] Seventh attempt --- .gitea/workflows/on-push.yaml | 2 +- docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/on-push.yaml b/.gitea/workflows/on-push.yaml index d8eaa96..677b14d 100644 --- a/.gitea/workflows/on-push.yaml +++ b/.gitea/workflows/on-push.yaml @@ -9,7 +9,7 @@ jobs: - name: Clone repository uses: actions/checkout@v3 - name: Install Docker - run: apk add nodejs + run: apt-get -y update && apt-get -y install docker.io - name: Login run: echo ${{ secrets.INFRA_ACCESS_TOKEN }} | docker login -u ${{ gitea.actor }} --password-stdin code.helloryan.se - name: Build diff --git a/docker/Dockerfile b/docker/Dockerfile index b6c55d5..eb87de5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ FROM docker:latest -RUN apt-get -y update && apt-get -y install nodejs +RUN apk add nodejs