diff --git a/Dockerfile b/Dockerfile index db1d550..c7491a7 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base -FROM oven/bun:alpine AS based +FROM node:alpine AS based # Metadata LABEL org.opencontainers.image.title="ButterflyVu" @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.description="Documentations built on Astro" LABEL org.opencontainers.image.licenses="MIT NON-AI License" LABEL org.opencontainers.image.url="https://butterflyvu.docs.sudovanilla.org/" LABEL org.opencontainers.image.source="https://ark.sudovanilla.org/Korbs/ButterflyVu/" -LABEL org.opencontainers.image.version="0.1.6" +LABEL org.opencontainers.image.version="0.1.7" # Copy Files WORKDIR /app @@ -16,4 +16,4 @@ COPY . . # Run EXPOSE 2014 -CMD bun run build && bun run preview \ No newline at end of file +CMD npm run build && npm run preview \ No newline at end of file