git ssb

0+

Rômulo Alves / website



Tree: 84d5e09c535dd684a7d3b5e5a40a9ad01b52a9d2

Files: 84d5e09c535dd684a7d3b5e5a40a9ad01b52a9d2 / Dockerfile

169 bytesRaw
1FROM mhart/alpine-node:latest
2
3RUN mkdir -p /app
4WORKDIR /app
5
6COPY package.json /app
7RUN npm install
8
9COPY . /app
10
11RUN npm run build
12
13EXPOSE 3000
14
15CMD ["npm", "start"]
16

Built with git-ssb-web