mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 07:17:53 +00:00
18 lines
590 B
Docker
18 lines
590 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 remove -y "postgresql-$POSTGRES_VERSION" redis-server
|
|
|
|
ENV DATA_DIR=/baserow/data
|
|
# We have to build the data dir in the docker image as Caddy does not allow it in their
|
|
# runtime filesystem. We chown to their www-data user's uid and gid at the end.
|
|
RUN mkdir -p "$DATA_DIR" && \
|
|
chown -R 9999:9999 "$DATA_DIR"
|
|
|
|
COPY deploy/heroku/heroku_env.sh /baserow/supervisor/env/heroku_env.sh
|
|
|
|
ENTRYPOINT []
|
|
CMD []
|