diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d663693 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:16.17 + +WORKDIR /usr/src/app + +COPY package*.json ./ + +RUN npm ci + +COPY data.json . + +COPY out . + +EXPOSE 8080 + +CMD ["node", "index.js"] \ No newline at end of file