diff --git a/.changeset/thirty-baboons-compare.md b/.changeset/thirty-baboons-compare.md new file mode 100644 index 0000000..9f75afa --- /dev/null +++ b/.changeset/thirty-baboons-compare.md @@ -0,0 +1,5 @@ +--- +"@trueberryless-org/starlight-plugins-docs-components": patch +--- + +Fix Dockerfile diff --git a/Dockerfile b/Dockerfile index 0e1e740..c8db731 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ -FROM httpd:2.4 AS runtime -COPY /docs/dist /usr/local/apache2/htdocs/ +FROM node:20-alpine AS runtime +WORKDIR /app +COPY /docs/dist ./dist EXPOSE 80 -EXPOSE 443 +ENV HOST=0.0.0.0 +ENV PORT=80 +CMD ["node", "dist/server/entry.mjs"] \ No newline at end of file