butterflyvu/Dockerfile
2025-02-05 17:28:08 -05:00

19 lines
No EOL
588 B
Docker
Executable file

# Base
FROM node:alpine AS based
# Metadata
LABEL org.opencontainers.image.title="ButterflyVu"
LABEL org.opencontainers.image.vendor="SudoVanilla"
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.2.1"
# Copy Files
WORKDIR /app
COPY . .
# Run
EXPOSE 2014
CMD npm run build && npm run preview