mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-29 09:27:32 +00:00
16 lines
439 B
Text
16 lines
439 B
Text
|
|
# Render deployments doesn't support image based deploys yet
|
||
|
|
# Thus making use of placeholder dockerfile to be used in render.yaml
|
||
|
|
# ref:
|
||
|
|
# https://github.com/PostgREST/postgrest/tree/main/nix/tools/docker
|
||
|
|
# https://feedback.render.com/features/p/deploy-docker-images-from-public-private-registries
|
||
|
|
|
||
|
|
FROM alpine:latest
|
||
|
|
|
||
|
|
COPY --from=postgrest/postgrest:v10.1.1.20221215 /bin/postgrest /bin
|
||
|
|
|
||
|
|
EXPOSE 3000
|
||
|
|
|
||
|
|
USER 1000
|
||
|
|
|
||
|
|
CMD [ "/bin/postgrest" ]
|