mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 02:00:20 +00:00
Merge branch 'master' into v2
This commit is contained in:
commit
f9a1347cc5
37
.github/dependabot.yml
vendored
Normal file
37
.github/dependabot.yml
vendored
Normal 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
14
Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user