diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e674ed4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:lts AS build +WORKDIR /app +COPY . . +RUN npm i +RUN npm run build + +FROM httpd:2.4 AS runtime +COPY --from=build /app/dist /usr/local/apache2/htdocs/ +EXPOSE 4443 \ No newline at end of file