git ssb

0+

Rômulo Alves / website



Tree: d1965e6223c3a0dba5efd21a77f674689c9f1389

Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / 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