Seventh attempt
All checks were successful
on-push / infra/misc/docker (push) Successful in 2m23s

This commit is contained in:
RYAN 2024-05-26 09:45:16 +02:00
parent c9c588311f
commit c1d0024472
Signed by: RYAN
GPG Key ID: 3BD93EABD1407B82
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,3 +1,3 @@
FROM docker:latest
RUN apt-get -y update && apt-get -y install nodejs
RUN apk add nodejs