We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a372c83 commit 93238faCopy full SHA for 93238fa
Dockerfile
@@ -1,4 +1,13 @@
1
# syntax=docker/dockerfile:1.4
2
+
3
+FROM alpine:3.19 AS downloader
4
+RUN apk add --no-cache curl
5
+RUN curl -o Dockerfile.pg_jsonschema https://raw.githubusercontent.com/supabase/pg_jsonschema/master/dockerfiles/db/Dockerfile
6
7
+FROM scratch AS pg_jsonschema
8
+COPY --from=downloader Dockerfile.pg_jsonschema .
9
10
+FROM pg_jsonschema AS base
11
FROM github.com/supabase/pg_jsonschema/blob/master/dockerfiles/db/Dockerfile AS base
12
13
# Script to detect whether the database has finished initializing
0 commit comments