Skip to content

Commit

Permalink
Merge pull request #4 from maii-chgk/dockerfile_paths
Browse files Browse the repository at this point in the history
fix paths to sql scripts in schema dockerfile
  • Loading branch information
razumau authored Sep 22, 2024
2 parents ddbdbc7 + 584ffc3 commit b9a6843
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema_image/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b9a6843

Please sign in to comment.