0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00
install-postgresql/Dockerfile
2023-09-07 20:39:18 -06:00

9 lines
180 B
Docker

FROM alpine:3.18.3
LABEL maintainer="Tonye Jack <jtonye@ymail.com>"
RUN apk add bash
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]