git ssb

0+

Rômulo Alves / website



Tree: 7a06852ff59f91404bd07a90d8bdf896f5a42c59

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