16 lines
No EOL
428 B
Text
16 lines
No EOL
428 B
Text
# PostgreSQL testing environment for CI/CD
|
|
FROM postgres:15-alpine
|
|
|
|
# Install additional tools if needed
|
|
RUN apk add --no-cache curl
|
|
|
|
# Copy any custom configuration if needed
|
|
# COPY postgresql.conf /etc/postgresql/postgresql.conf
|
|
|
|
# Keep the default PostgreSQL configuration
|
|
# The image will use the default postgresql.conf
|
|
|
|
# Expose the default PostgreSQL port
|
|
EXPOSE 5432
|
|
|
|
# Use the default PostgreSQL entrypoint and command |