sharenet/backend/Dockerfile.test-postgres
continuist 9d37a795a0
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 35s
CI/CD Pipeline (Fully Isolated DinD) / Build and Push Docker Images (DinD) (push) Has been skipped
CI/CD Pipeline (Fully Isolated DinD) / Deploy to Production (push) Has been skipped
Use Dockerfiles to perform tests
2025-07-05 13:15:02 -04:00

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