1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00
musix-oss/Dockerfile

13 lines
189 B
Docker
Raw Normal View History

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