We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9174783 commit ddddfcbCopy full SHA for ddddfcb
1 file changed
packages/pg-native/README.md
@@ -18,6 +18,16 @@ Some ways I've done it in the past:
18
2. Install PostgreSQL (`http://www.postgresql.org/download/windows/`)
19
3. Add your Postgre Installation's `bin` folder to the system path (i.e. `C:\Program Files\PostgreSQL\9.3\bin`).
20
4. Make sure that both `libpq.dll` and `pg_config.exe` are in that folder.
21
+- On Docker:
22
+```Docker
23
+FROM node:24-slim
24
+ENV DEBIAN_FRONTEND=noninteractive
25
+RUN apt-get update \
26
+ && apt-get -y install libpq-dev python3 g++ make \
27
+ && apt-get autoremove -y \
28
+ && apt-get clean -y \
29
+ && rm -rf /var/lib/apt/lists/*
30
+```
31
32
Afterwards `pg_config` should be in your path. Then...
33
0 commit comments