mirror of
https://github.com/artegoser/AnoPaper.git
synced 2024-11-05 20:43:57 +03:00
docker
This commit is contained in:
parent
c34a6fe5c2
commit
e02996355b
5 changed files with 23 additions and 51 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
node_modules
|
||||||
|
dist
|
47
.github/workflows/deploy.yml
vendored
47
.github/workflows/deploy.yml
vendored
|
@ -1,47 +0,0 @@
|
||||||
name: Build & Deploy
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: ["main"]
|
|
||||||
|
|
||||||
pull_request:
|
|
||||||
branches: ["main"]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [18.x]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node-version }}
|
|
||||||
cache: "npm"
|
|
||||||
- run: npm ci
|
|
||||||
- run: npm run build --if-present
|
|
||||||
- run: npm run test --if-present
|
|
||||||
|
|
||||||
- uses: a7ul/tar-action@v1.1.0
|
|
||||||
with:
|
|
||||||
command: c
|
|
||||||
cwd: "./"
|
|
||||||
files: |
|
|
||||||
index.js
|
|
||||||
core.js
|
|
||||||
note_validator.js
|
|
||||||
package.json
|
|
||||||
dist/
|
|
||||||
captain-definition
|
|
||||||
outPath: deploy.tar
|
|
||||||
|
|
||||||
- name: Deploy App to CapRover
|
|
||||||
uses: caprover/deploy-from-github@v1.0.1
|
|
||||||
with:
|
|
||||||
server: "${{ secrets.CAPROVER_SERVER }}"
|
|
||||||
app: "${{ secrets.APP_NAME }}"
|
|
||||||
token: "${{ secrets.APP_TOKEN }}"
|
|
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
FROM node:18-alpine as build
|
||||||
|
WORKDIR /app
|
||||||
|
COPY . .
|
||||||
|
RUN npm install
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
FROM node:18-alpine as run
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=build /app/package*.json /app/index.js /app/note_validator.js /app/core.js /usr/src/app/
|
||||||
|
COPY --from=build /app/dist/ /usr/src/app/dist/
|
||||||
|
RUN npm install --omit=dev
|
||||||
|
CMD npm run start
|
||||||
|
EXPOSE 80
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"schemaVersion": 2,
|
|
||||||
"templateId": "node/18.17.1"
|
|
||||||
}
|
|
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
anopaper:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in a new issue