You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/Dockerfile.nginx

10 lines
264 B

FROM registry.willaspace.com/willaspace/${IMAGE_NAME}-staging:latest AS php_builder
FROM node:16.7.0-alpine AS builder
COPY --from=php_builder /var/www /app
WORKDIR /app
RUN npm run staging
FROM nginx:1.21.1
COPY --from=builder /app/public /usr/share/nginx/html