1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-21 23:38:20 +00:00
bramw_baserow/deploy/cloudron/Dockerfile
2024-12-20 10:26:36 +00:00

10 lines
506 B
Docker

ARG FROM_IMAGE=baserow/baserow:1.30.1
# This is pinned as version pinning is done by the CI setting FROM_IMAGE.
# hadolint ignore=DL3006
FROM $FROM_IMAGE as image_base
# We need to move the conf at build time due to cloudrons readonly filesystem.
RUN apt-get remove -y "postgresql-$POSTGRES_VERSION" && \
mv /baserow/supervisor/includes/disabled/embedded-redis.conf /baserow/supervisor/includes/enabled/embedded-redis.conf
COPY deploy/cloudron/cloudron_env.sh /baserow/supervisor/env/cloudron_env.sh