diff --git a/Dockerfile.cron b/Dockerfile.cron index 674900415..a85d93836 100644 --- a/Dockerfile.cron +++ b/Dockerfile.cron @@ -27,7 +27,7 @@ COPY . /src/ RUN just errtrace # Reset timestamps so that the build state is reset RUN git ls-files -z | xargs -0 touch -r go.mod -RUN just build ftl-cron +RUN just build-without-frontend ftl-cron # Finally create the runtime image. FROM scratch diff --git a/Dockerfile.http-ingress b/Dockerfile.http-ingress index 70b50e298..c769ade8f 100644 --- a/Dockerfile.http-ingress +++ b/Dockerfile.http-ingress @@ -27,7 +27,7 @@ COPY . /src/ RUN just errtrace # Reset timestamps so that the build state is reset RUN git ls-files -z | xargs -0 touch -r go.mod -RUN just build ftl-http-ingress +RUN just build-without-frontend ftl-http-ingress # Finally create the runtime image. FROM scratch diff --git a/Dockerfile.initdb b/Dockerfile.initdb index 05060af72..0c8c3157b 100644 --- a/Dockerfile.initdb +++ b/Dockerfile.initdb @@ -27,7 +27,7 @@ COPY . /src/ RUN just errtrace # Reset timestamps so that the build state is reset RUN git ls-files -z | xargs -0 touch -r go.mod -RUN just build ftl-controller +RUN just build-without-frontend ftl-controller # Finally create the runtime image. FROM scratch diff --git a/Dockerfile.provisioner b/Dockerfile.provisioner index c15cf01bb..d3ec707eb 100644 --- a/Dockerfile.provisioner +++ b/Dockerfile.provisioner @@ -27,7 +27,7 @@ COPY . /src/ RUN just errtrace # Reset timestamps so that the build state is reset RUN git ls-files -z | xargs -0 touch -r go.mod -RUN just build ftl-provisioner ftl-provisioner-cloudformation +RUN just build-without-frontend ftl-provisioner ftl-provisioner-cloudformation # Finally create the runtime image. FROM scratch diff --git a/Dockerfile.runner b/Dockerfile.runner index 05dc4cf18..97b6c00e5 100644 --- a/Dockerfile.runner +++ b/Dockerfile.runner @@ -20,8 +20,7 @@ COPY . /src/ RUN just errtrace # Reset timestamps so that the build state is reset RUN git ls-files -z | xargs -0 touch -r go.mod -RUN just build ftl-runner -RUN just build ftl +RUN just build-without-frontend ftl-runner # Finally create the runtime image. FROM ubuntu:24.04