1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-02-23 19:59:44 +00:00
musix-oss/Dockerfile

13 lines
189 B
Docker
Raw Normal View History

2024-02-09 00:06:03 +02:00
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" ]