mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-11 16:01:20 +00:00
10 lines
502 B
Docker
10 lines
502 B
Docker
ARG FROM_IMAGE=baserow/baserow:1.9
|
|
# 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
|