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