Dockerfile 221 B

12345678910
  1. FROM ioiox/node:16-alpine
  2. LABEL maintainer="Stille <[email protected]>"
  3. WORKDIR /app
  4. RUN git clone -b v2 https://github.com/Hideipnetwork/hideipnetwork-web.git . && npm install
  5. EXPOSE 56559
  6. CMD ["npm", "run", "start"]