Files
AGS_IT_Solutions_Website/Dockerfile
stefan080106 79c024a10d 🐳 Update Dockerfile
2022-06-07 23:29:35 +02:00

11 lines
134 B
Docker

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