Skip to content

Commit

Permalink
Add Dockerfile.postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
tnaccarato committed Aug 11, 2024
1 parent 132d045 commit 17377fd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile.postgres
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Dockerfile for PostgreSQL with Preloaded Data

# Use the official PostgreSQL image as a base
FROM postgres:13

# Copy the SQL dump into the Docker image
COPY db_backup.sql /docker-entrypoint-initdb.d/

# PostgreSQL will automatically load the dump when the container starts

0 comments on commit 17377fd

Please sign in to comment.