mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 00:19:34 +00:00
11 lines
506 B
Docker
11 lines
506 B
Docker
ARG FROM_IMAGE=baserow/baserow:1.29.2
|
|
# 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
|