Files

7 lines
175 B
Docker
Raw Permalink Normal View History

2025-12-14 10:39:18 +03:00
FROM ubuntu:24.04
RUN apt-get update && apt-get install postgresql-client -yqq \
&& rm -rf /var/lib/apt/lists/*
COPY --chmod=755 cleaner.sh /cleaner.sh
CMD ["/cleaner.sh"]