git ssb

0+

Rômulo Alves / plainbudget-next



Tree: 546a29ac502f64ff85e2f6faae88604083593767

Files: 546a29ac502f64ff85e2f6faae88604083593767 / Dockerfile

286 bytesRaw
1FROM mhart/alpine-node:10 as base
2WORKDIR /usr/src
3COPY package*.json /usr/src/
4RUN npm ci
5COPY . .
6RUN npm run build && npm install --production
7
8FROM mhart/alpine-node:base-10
9WORKDIR /usr/src
10ENV NODE_ENV="production"
11COPY --from=base /usr/src .
12EXPOSE 3000
13CMD ["node", "server.js"]

Built with git-ssb-web