update: kitabu POA

This commit is contained in:
2022-04-17 10:59:14 +03:00
parent 0a4a93cd74
commit 7d1b1bf365
7 changed files with 18 additions and 24 deletions

View File

@@ -1,10 +1,12 @@
FROM node
FROM node:17-alpine
RUN git clone https://github.com/goerli/netstats-server /netstats-server
WORKDIR /netstats-server
RUN npm install
RUN npm install -g grunt-cli
RUN grunt
EXPOSE 3000
EXPOSE 3000
CMD ["npm", "start"]
RUN apk add --no-cache git
WORKDIR /app
COPY package.json ./
RUN npm i
COPY . .