mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-09 22:50:19 +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" ]
|