From 7715ea4df547d439fa502f8f1ac9665fa21a19ae Mon Sep 17 00:00:00 2001 From: Nite07 Date: Mon, 23 Sep 2024 13:12:24 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-standard-notes.yml | 33 --------------------- Dockerfile-standard-notes | 12 -------- 2 files changed, 45 deletions(-) delete mode 100644 .github/workflows/docker-standard-notes.yml delete mode 100644 Dockerfile-standard-notes diff --git a/.github/workflows/docker-standard-notes.yml b/.github/workflows/docker-standard-notes.yml deleted file mode 100644 index 1ee9f73..0000000 --- a/.github/workflows/docker-standard-notes.yml +++ /dev/null @@ -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 diff --git a/Dockerfile-standard-notes b/Dockerfile-standard-notes deleted file mode 100644 index 0c99ff7..0000000 --- a/Dockerfile-standard-notes +++ /dev/null @@ -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;"] \ No newline at end of file