1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-24 21:46:08 +00:00
bramw_baserow/deploy/all-in-one/dev.Dockerfile

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

8 lines
249 B
Text
Raw Normal View History

2022-06-22 12:49:30 +00:00
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'