9 lines
192 B
Docker
9 lines
192 B
Docker
|
|
FROM ubuntu:24.04
|
||
|
|
RUN apt update && apt install -y postgresql-client && \
|
||
|
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
COPY ./cleaner.sh /cleaner.sh
|
||
|
|
RUN chmod +x /cleaner.sh
|
||
|
|
|
||
|
|
ENTRYPOINT [ "/cleaner.sh" ]
|