diff --git a/Dockerfile b/Dockerfile index 3a67c23c..79d49914 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,11 @@ RUN pnpm run build FROM busybox:1.36.1-musl WORKDIR /home/static + COPY --from=build /app/dist /home/static +RUN echo 'E404:index.html' >> /etc/httpd.conf + EXPOSE 80 CMD ["busybox", "httpd", "-v", "-f"]