1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-11 16:01:20 +00:00
bramw_baserow/deploy/cloudron/Dockerfile
2022-06-09 07:33:23 +00:00

10 lines
505 B
Docker

ARG FROM_IMAGE=baserow/baserow:1.10.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 postgresql-contrib && \
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