diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..da658b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:18-alpine +WORKDIR / +COPY package.* . +COPY yarn.lock +COPY now.json +COPY renovate.json +RUN npm install +COPY . . +EXPOSE 3000 +CMD ["npm", "start"]