🎨
This commit is contained in:
parent
1ff4de8680
commit
7715ea4df5
33
.github/workflows/docker-standard-notes.yml
vendored
33
.github/workflows/docker-standard-notes.yml
vendored
@ -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
|
@ -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;"]
|
Loading…
Reference in New Issue
Block a user