mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 15:27:53 +00:00
9 lines
262 B
Docker
9 lines
262 B
Docker
FROM baserow/web-frontend:1.29.2
|
|
|
|
USER root
|
|
|
|
COPY ./plugins/{{ cookiecutter.project_module }}/ /baserow/plugins/{{ cookiecutter.project_module }}/
|
|
RUN /baserow/plugins/install_plugin.sh --folder /baserow/plugins/{{ cookiecutter.project_module }}
|
|
|
|
USER $UID:$GID
|