You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
339 B
12 lines
339 B
ARG DEBIAN_VERSION=trixie-20260202-slim |
|
|
|
FROM debian:${DEBIAN_VERSION} |
|
|
|
RUN apt-get update \ |
|
&& apt-get install -y --no-install-recommends postgresql-client \ |
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
COPY ./docker/usersetup.sh /usr/local/bin/usersetup.sh |
|
RUN chmod +x /usr/local/bin/usersetup.sh |
|
|
|
ENTRYPOINT ["/usr/local/bin/usersetup.sh"]
|
|
|