mirror of
https://github.com/sartography/cr-connect-db.git
synced 2025-02-22 19:48:22 +00:00
7 lines
223 B
Docker
7 lines
223 B
Docker
FROM postgres
|
|
ARG GIT_COMMIT=""
|
|
RUN echo "GIT_COMMIT = ${GIT_COMMIT}"
|
|
COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh
|
|
CMD echo 'echo "git commit = ${GIT_COMMIT}"' >> /docker-entrypoint-initdb.d/initdb.sh
|
|
EXPOSE 5432
|