diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 14e115c..b6f48e8 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,15 +1,13 @@ # syntax=docker/dockerfile:1 ARG VOLTO_VERSION -# TODO: Replace with -# FROM plone/frontend-builder:${VOLTO_VERSION} -# when the main image is ready -FROM ghcr.io/kitconcept/frontend-builder:${VOLTO_VERSION} AS builder +FROM plone//frontend-builder:${VOLTO_VERSION} AS builder COPY --chown=node packages/volto-ploneconf /app/packages/volto-ploneconf COPY --chown=node volto.config.js /app/ COPY --chown=node package.json /app/package.json.temp RUN --mount=type=cache,id=pnpm,target=/app/.pnpm-store,uid=1000 <