File size: 453 Bytes
7d32e22 9647270 7d32e22 2d6a7aa 7d32e22 2d6a7aa 7d32e22 2d6a7aa 7d32e22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Use the latest Ubuntu image as the base
FROM ubuntu:latest
# Update the package lists and install PostgreSQL
RUN apt-get update && apt-get install -y postgresql-13 postgresql-client-13
# Copy the entrypoint script to the container
COPY entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/entrypoint.sh
# Expose the default PostgreSQL port
EXPOSE 5432
# Set the ENTRYPOINT to the entrypoint script
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|