1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00

Merge branch 'master' into v1

This commit is contained in:
Christer Warén 2024-02-09 00:06:27 +02:00
commit 35739461ba
2 changed files with 51 additions and 0 deletions

37
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,37 @@
version: 2
updates:
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
labels:
- "dependencies"
# NPM - Version 1
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "v1"
labels:
- "dependencies"
# NPM - Version 2
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "v2"
labels:
- "dependencies"
# NPM - Version 3
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "v3"
labels:
- "dependencies"

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM docker.io/node:20-alpine
#Dependencies
RUN apk add --virtual .build-deps python3 make g++ gcc git
WORKDIR /usr/src/app
COPY / /usr/src/app/
RUN npm install
RUN npm run build
CMD [ "npm", "start" ]