mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 05:10:17 +00:00
13 lines
189 B
Docker
13 lines
189 B
Docker
|
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
|
||
|
|
||
|
CMD [ "npm", "start" ]
|