butterflyvu/Dockerfile

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.1.7"
# Copy Files
WORKDIR /app
COPY . .
# Run
EXPOSE 2014
CMD npm run build && npm run preview