diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile new file mode 100644 index 0000000..99161cc --- /dev/null +++ b/src/Api/Dockerfile @@ -0,0 +1,9 @@ +FROM node:latest +WORKDIR /Api +ADD package.json /Api +ADD tsconfig.json /Api +ADD . /Api +RUN npm install +RUN npm run build +EXPOSE 8080 +CMD [ "node","." ] \ No newline at end of file