mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
215 B
Docker
12 lines
215 B
Docker
FROM node:lts-alpine
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN npm config set registry "https://registry.npm.taobao.org/" \
|
|
&& npm install -g npm husky \
|
|
&& npm install --production
|
|
|
|
EXPOSE 3000
|
|
CMD ["node", "app.js"]
|