File size: 145 Bytes
af2a264
 
 
 
 
 
 
 
4c8f35d
 
 
af2a264
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:alpine

WORKDIR /app

COPY . /app

RUN npm install

RUN mkdir /app/images \

  && chmod 777 /app/images

CMD ["npm", "start"]