diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..e449a1a --- /dev/null +++ b/dockerfile @@ -0,0 +1,13 @@ +FROM node:latest +WORKDIR /app + +COPY ./index.html . +COPY ./main.js . +COPY ./backend.js . +COPY ./package.json ./package-lock.json . + +RUN npm ci --only=production + +EXPOSE 3000 +CMD ["npm" "backend.js"] +