mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-05-12 19:44:30 +02:00
14 lines
284 B
Docker
14 lines
284 B
Docker
ARG BBB_BUILD_TAG
|
|
FROM bigbluebutton/bbb-build:$BBB_BUILD_TAG
|
|
|
|
|
|
# use /tmp as home dir as writeable directory for whatever UID we get
|
|
ENV HOME /tmp
|
|
|
|
# allow all user to access .nvm in root
|
|
RUN chmod 755 /root
|
|
|
|
WORKDIR /app
|
|
COPY /entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT /entrypoint.sh
|