mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-12-24 13:37:58 +08:00
11 lines
221 B
Docker
11 lines
221 B
Docker
FROM ioiox/node:16-alpine
|
|
LABEL maintainer="Stille <stille@ioiox.com>"
|
|
|
|
WORKDIR /app
|
|
|
|
RUN git clone -b v2 https://github.com/Hideipnetwork/hideipnetwork-web.git . && npm install
|
|
|
|
EXPOSE 56559
|
|
|
|
CMD ["npm", "run", "start"]
|