mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-22 08:33:18 +00:00
Add Dockerfile
This commit is contained in:
parent
58f47670c9
commit
55285239af
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