mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 15:27:53 +00:00
13 lines
421 B
Docker
13 lines
421 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
|
|
|
|
RUN apt-get update \
|
|
&& apt-get remove -y postgresql postgresql-contrib redis-server \
|
|
&& apt-get clean \
|
|
&& apt-get autoremove -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY deploy/render/render_env.sh /baserow/supervisor/env/render_env.sh
|