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

9 lines
203 B

FROM registry.willaspace.com/willaspace/willaengine-staging:latest AS php_builder
WORKDIR /var/www/
RUN npm install
RUN npm run staging
FROM nginx:1.21.1
COPY --from=php_builder /var/www /var/www/html