We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2965b4 commit 6afa16cCopy full SHA for 6afa16c
Dockerfile
@@ -1,5 +1,11 @@
1
-FROM graphile/postgraphile:beta
+FROM node:22-alpine
2
3
-RUN yarn global add \
4
- postgraphile-plugin-connection-filter-relations@beta \
5
- @graphile-contrib/pg-simplify-inflector
+WORKDIR /app
+
+RUN npm install -g postgraphile@beta \
6
+ @graphile-contrib/pg-simplify-inflector \
7
+ postgraphile-plugin-connection-filter-relations@beta
8
9
+EXPOSE 5000
10
11
+CMD ["postgraphile"]
0 commit comments