This commit is contained in:
Nite07 2024-09-23 13:12:24 +08:00
parent 1ff4de8680
commit 7715ea4df5
2 changed files with 0 additions and 45 deletions

View File

@ -1,33 +0,0 @@
name: docker-standard-notes
on:
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: nite07/standard-notes-frontend:latest
platforms: linux/amd64,linux/arm64,linux/arm/v7
file: ./Dockerfile-standard-notes

View File

@ -1,12 +0,0 @@
FROM node:16 AS builder
WORKDIR /app
RUN git clone https://github.com/standardnotes/app.git .
RUN yarn install
RUN yarn build:web
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY --from=builder /app/packages/web/dist .
CMD ["nginx", "-g", "daemon off;"]