setting up gitea actions
Some checks failed
Build container images / build (push) Failing after 12s

This commit is contained in:
2023-08-18 16:07:22 -07:00
parent a89a859e24
commit 324e2b2818
5 changed files with 173 additions and 1 deletions

View File

@@ -29,7 +29,8 @@ COPY package.json package-lock.json tsconfig.json ${BUILD_PATH}/
COPY src/ ${BUILD_PATH}/src/
# Install dependencies and build the application source
RUN npm ci
# (mount the NPM credentials so we can install private packages)
RUN --mount-type=secret,id=npmrc,target=/root/.npmrc npm ci
RUN npm run tsc
# Remove any dev dependencies now that the app is built