Files
AGS_IT_Solutions_Website/Dockerfile
stefan080106 199da0d3f6 🐳 Add docker
2022-06-07 22:33:24 +02:00

11 lines
134 B
Docker

FROM node:12
WORKDIR /usr/src/app
COPY . ./
# building the app
RUN npm i
RUN npm run build
# Running the app
CMD [ "npm", "start" ]