butterflyvu/Dockerfile

19 lines
588 B
Text
Raw Permalink Normal View History

# Base
FROM node:alpine AS based
2024-12-12 09:04:55 -05:00
# 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"
2024-06-05 19:48:11 -05:00
# Copy Files
WORKDIR /app
2024-06-05 19:48:11 -05:00
COPY . .
# Run
2024-11-12 17:03:52 -05:00
EXPOSE 2014
CMD npm run build && npm run preview