feat: ci pipeline for debug image

This commit is contained in:
Gheorghe
2021-02-26 14:34:14 +01:00
parent e1e7e0ba21
commit c8cf5ed621
7 changed files with 725 additions and 734 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM node:14-buster-slim
COPY . /app
WORKDIR /app
RUN npm i
EXPOSE 8080
CMD [ "npm", "run", "serve" ]