Compare commits

...
Sign in to create a new pull request.

3 commits

2 changed files with 3 additions and 2 deletions
.forgejo/workflows
Dockerfile

View file

@ -5,6 +5,7 @@ on:
branches: branches:
- gold - gold
jobs: jobs:
publish: publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View file

@ -1,7 +1,7 @@
# build stage # build stage
FROM node:lts-alpine AS build-stage FROM node:lts-alpine AS build-stage
WORKDIR /app WORKDIR ./app
COPY package.json package-lock.json ./ COPY package.json ./
RUN npm i RUN npm i
COPY . . COPY . .
RUN npm run build RUN npm run build