Closed IzakMaraisTAL closed 4 months ago
+1
Related ticket: https://issuetracker.google.com/issues/349291136?pli=1
Apparently docker version is no longer being supported - and we are advised to create our own using node docker image and the dataform npm package
We've had to stop publishing new docker images due to some security requirements.
I'd recommended just building your own image for it as part of your CI/CD, for example by creating the DOCKERFILE:
# syntax=docker/dockerfile:1
FROM node:18-alpine
RUN npm i -g @dataform/core@3.0.0
RUN dataform compile
and then running
$ docker build -t dataform .
Let me know if this works for you!
Thanks for the feedback.
Dataform 3.0.0 has been released, but the latest dockerhub image tag is 3.0.0-beta1. Please update this.