Skip to content

Commit 93238fa

Browse files
authored
Update Dockerfile
1 parent a372c83 commit 93238fa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# 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
211
FROM github.com/supabase/pg_jsonschema/blob/master/dockerfiles/db/Dockerfile AS base
312

413
# Script to detect whether the database has finished initializing

0 commit comments

Comments
 (0)