mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-03 07:32:08 +08:00
10 lines
104 B
Docker
10 lines
104 B
Docker
FROM mhart/alpine-node:8
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN npm install
|
|
|
|
EXPOSE 3000
|
|
CMD ["node", "app.js"]
|