mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
12 lines
285 B
Docker
12 lines
285 B
Docker
FROM postgres:17
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
default-libmysqlclient-dev \
|
|
postgresql-17-mysql-fdw \
|
|
&& apt-get autoremove \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ADD ./misc/docker/pg/* /docker-entrypoint-initdb.d/
|