1
Fork 0
docker-build-automation/phanpy/Dockerfile
Korbs 6f4469acdd
All checks were successful
continuous-integration/drone Build is passing
Remove Whoogle and Bewcloud
2024-08-29 22:24:09 -04:00

16 lines
No EOL
407 B
Docker
Executable file

FROM node:21-alpine as builder
WORKDIR /code
COPY . /code
RUN npm ci && npm run build
FROM nginx:1.25.4-alpine
LABEL maintainer="Victoria Nadasdi <efertone@pm.me>"
LABEL org.opencontainers.image.source=https://github.com/cheeaun/phanpy
LABEL org.opencontainers.image.description="Docker Image for Phanpy"
LABEL org.opencontainers.image.licenses=MIT
COPY --from=builder /code/dist /usr/share/nginx/html