mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
15 lines
422 B
Docker
15 lines
422 B
Docker
# 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 /bin/postgrest /bin
|
|
|
|
EXPOSE 3000
|
|
|
|
USER 1000
|
|
|
|
CMD [ "/bin/postgrest" ]
|