move to root dir
Some checks failed
Publish Docker Image / docker (push) Failing after 18s

This commit is contained in:
Lee 2023-11-29 18:58:27 +00:00
parent a1d49f064a
commit 73ad9c552b
6 changed files with 30 additions and 30 deletions

@ -38,30 +38,6 @@ jobs:
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
- name: Build and Push (Latest NodeJS)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: ./gitea-runner/NodeLatestDockerfile
tags: fascinated/docker-images:node-latest
- name: Build and Push (Latest NodeJS - pnpm)
uses: docker/build-push-action@v4
with:
push: true
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
- name: Build and Push (Java8 with Firefox)
uses: docker/build-push-action@v4
with:
@ -69,3 +45,27 @@ jobs:
context: ./java8-with-firefox
file: ./java8-with-firefox/Dockerfile
tags: fascinated/docker-images:node-yarn-latest
- name: Build and Push (Latest NodeJS)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: .NodeLatestDockerfile
tags: fascinated/docker-images:node-latest
- name: Build and Push (Latest NodeJS - pnpm)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: .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: .NodeWithYarnLatestDockerfile
tags: fascinated/docker-images:node-yarn-latest

@ -1,6 +1,6 @@
FROM fascinated/docker-images:node-latest
# Install pnpm
RUN npm install -g pnpm
ENV PNPM_HOME=/usr/local/bin
FROM fascinated/docker-images:node-latest
# Install pnpm
RUN npm install -g pnpm
ENV PNPM_HOME=/usr/local/bin