diff --git a/schema_image/Dockerfile b/schema_image/Dockerfile index 1d7a989..0a92f86 100644 --- a/schema_image/Dockerfile +++ b/schema_image/Dockerfile @@ -1,4 +1,4 @@ FROM postgres:15 -COPY ./pre_restore.sql /docker-entrypoint-initdb.d/01_pre_restore.sql -COPY ../schema.sql /docker-entrypoint-initdb.d/02_schema.sql -COPY ./post_restore.sql /docker-entrypoint-initdb.d/03_post_restore.sql +COPY schema_image/pre_restore.sql /docker-entrypoint-initdb.d/01_pre_restore.sql +COPY schema.sql /docker-entrypoint-initdb.d/02_schema.sql +COPY schema_image/post_restore.sql /docker-entrypoint-initdb.d/03_post_restore.sql