mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-03 07:02:10 +08:00
13 lines
234 B
Docker
13 lines
234 B
Docker
FROM mhart/alpine-node:9
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN rm -rf node_modules \
|
|
&& rm package-lock.json \
|
|
&& npm config set registry "https://registry.npm.taobao.org/" \
|
|
&& npm install
|
|
|
|
EXPOSE 3000
|
|
CMD ["node", "app.js"]
|