1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 00:19:34 +00:00
bramw_baserow/deploy/all-in-one/dev.Dockerfile
2022-06-30 17:43:32 +01:00

8 lines
249 B
Docker

FROM baserow
# Install dev dependencies manually.
COPY --chown=$UID:$GID ./backend/requirements/dev.txt /tmp/dev-requirements.txt
RUN . /baserow/venv/bin/activate && pip3 install -r /tmp/dev-requirements.txt
ENV BASEROW_ALL_IN_ONE_DEV_MODE='true'