5 lines
144 B
Docker
5 lines
144 B
Docker
FROM postgres:16
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends postgresql-16-cron \
|
|
&& rm -rf /var/lib/apt/lists/* |