1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-03 00:20:02 +00:00
bramw_baserow/deploy/render/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
421 B
Text
Raw Permalink Normal View History

2025-04-29 19:09:59 +00:00
ARG FROM_IMAGE=baserow/baserow:1.33.0
2022-07-05 13:45:31 +00:00
# This is pinned as version pinning is done by the CI setting FROM_IMAGE.
# hadolint ignore=DL3006
FROM $FROM_IMAGE as image_base
2024-01-17 14:50:00 +00:00
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/*
2022-07-05 13:45:31 +00:00
2022-07-27 11:50:27 +00:00
COPY deploy/render/render_env.sh /baserow/supervisor/env/render_env.sh