mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 00:19:34 +00:00
9 lines
263 B
Docker
9 lines
263 B
Docker
FROM baserow/backend:1.29.2
|
|
|
|
USER root
|
|
|
|
COPY ./plugins/{{ cookiecutter.project_module }}/ $BASEROW_PLUGIN_DIR/{{ cookiecutter.project_module }}/
|
|
RUN /baserow/plugins/install_plugin.sh --folder $BASEROW_PLUGIN_DIR/{{ cookiecutter.project_module }}
|
|
|
|
USER $UID:$GID
|