From 58f62f88a8bba028f658da5e7b2c03b4c6735b6e Mon Sep 17 00:00:00 2001 From: boojack Date: Sun, 3 Jul 2022 21:37:06 +0800 Subject: [PATCH] chore: add test github action (#102) chore: test --- .../workflows/build-and-push-test-image.yml | 37 +++++++++++++++++++ Dockerfile | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/build-and-push-test-image.yml diff --git a/.github/workflows/build-and-push-test-image.yml b/.github/workflows/build-and-push-test-image.yml new file mode 100644 index 00000000..05c41b49 --- /dev/null +++ b/.github/workflows/build-and-push-test-image.yml @@ -0,0 +1,37 @@ +name: build-and-push-dev-image + +on: + push: + branches: + - "*" + +jobs: + build-and-push-dev-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Login to Docker Hub + uses: docker/login-action@v1 + with: + username: neosmemo + password: ${{ secrets.DOCKER_NEOSMEMO_TOKEN }} + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + with: + install: true + + - name: Build and Push + id: docker_build + uses: docker/build-push-action@v3 + with: + context: ./ + file: ./Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: neosmemo/memos:dev diff --git a/Dockerfile b/Dockerfile index f62ea831..e8e5a597 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build frontend dist. -FROM node:16.15.1-bullseye AS frontend +FROM node:16.15.0-alpine AS frontend WORKDIR /frontend-build COPY ./web/ .