diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 315a4b3..ba5b136 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -53,3 +53,11 @@ jobs: context: ./gitea-runner file: ./gitea-runner/NodeWithPnpmLatestDockerfile tags: fascinated/docker-images:node-pnpm-latest + + - name: Build and Push (Latest NodeJS - yarn) + uses: docker/build-push-action@v4 + with: + push: true + context: ./gitea-runner + file: ./gitea-runner/NodeWithYarnLatestDockerfile + tags: fascinated/docker-images:node-yarn-latest diff --git a/gitea-runner/NodeWithYarnLatestDockerfile b/gitea-runner/NodeWithYarnLatestDockerfile new file mode 100644 index 0000000..0c69703 --- /dev/null +++ b/gitea-runner/NodeWithYarnLatestDockerfile @@ -0,0 +1,4 @@ +FROM fascinated/docker-images:node-latest + +# Install yarn +RUN npm install -g yarn \ No newline at end of file