mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-03 05:23:58 +01:00
17 lines
383 B
Docker
17 lines
383 B
Docker
ARG BBB_BUILD_TAG
|
|
FROM bigbluebutton/bbb-build:$BBB_BUILD_TAG AS builder
|
|
|
|
|
|
RUN curl https://install.meteor.com/\?release\=2.13 | sh
|
|
|
|
|
|
COPY --from=alangecker/bbb-docker-base-java /usr/local/bin/dockerize /usr/local/bin/dockerize
|
|
|
|
# make /root/.meteor accessible for user
|
|
RUN chmod 777 /root /root/.meteor
|
|
|
|
COPY entrypoint.dev.sh /entrypoint.dev.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.dev.sh"]
|
|
|