1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-16 18:51:09 +00:00

Add Dockerfile

This commit is contained in:
Christer Warén 2024-02-09 00:06:03 +02:00
parent 58f47670c9
commit 55285239af

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" ]