diff --git a/Dockerfile b/Dockerfile index 794a787..304500e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,7 @@ RUN npm run build ENV HOST=0.0.0.0 ENV PORT=80 EXPOSE 80 -CMD node ./dist/server/entry.mjs \ No newline at end of file + +FROM httpd:latest + +COPY ./dist/ /usr/local/apache2/htdocs/ \ No newline at end of file