Skip to content

Commit 5150ed4

Browse files
committed
Fixed Dockerfile empty DB
The github action is configured to have the empty DB step called "base" instead of "empty"
1 parent e125de2 commit 5150ed4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:13-alpine AS empty
1+
FROM postgres:13-alpine AS base
22

33
# Script to detect whether the database has finished initializing
44
COPY ["true_isready.sh", "/usr/local/bin/"]
@@ -10,5 +10,5 @@ COPY ["install_postgres_json_schema_extension.sh", "install_postgres_json_schema
1010
RUN chmod u+x install_postgres_json_schema_extension.sh
1111
RUN ./install_postgres_json_schema_extension.sh
1212

13-
FROM empty AS demo
13+
FROM base AS demo
1414
COPY ["database scripts/demo_db.sql", "/docker-entrypoint-initdb.d/"]

0 commit comments

Comments
 (0)