chore: docker base image change to node 18

This commit is contained in:
moonrailgun 2024-01-18 13:11:38 +08:00
parent 211e92100b
commit 88a87a4b58
2 changed files with 42 additions and 1 deletions

View File

@ -0,0 +1,41 @@
name: "Docker Publish Canary"
on:
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4 # peter-evans/dockerhub-description need checkout README.md
- name: Docker Setup QEMU
uses: docker/setup-qemu-action@v3
id: qemu
with:
platforms: amd64,arm64
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: moonrailgun/tianji
tags: |
type=sha
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
# context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@ -1,4 +1,4 @@
FROM node:20-bookworm
FROM node:18-bookworm
WORKDIR /app/tianji