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:
- gold
jobs:
publish:
runs-on: ubuntu-latest

View file

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