git ssb

0+

Rômulo Alves / website



Tree: c44ac06334a29af161898bac11e72394e3d96e8f

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