31 lines
1.1 KiB
Docker
31 lines
1.1 KiB
Docker
ARG BBB_BUILD_TAG=v2022-03-30
|
|
FROM onenetcom/docker-bbb-build:$BBB_BUILD_TAG AS builder
|
|
|
|
ARG TAG_HTML5=v2.5.11
|
|
|
|
COPY . /source
|
|
|
|
RUN cd /source \
|
|
&& meteor npm ci --production \
|
|
&& METEOR_DISABLE_OPTIMISTIC_CACHING=1 meteor build --architecture os.linux.x86_64 --allow-superuser --directory /app
|
|
|
|
RUN cd /app/bundle/programs/server \
|
|
&& npm install --production
|
|
|
|
RUN sed -i "s/VERSION/$TAG_HTML5/" /app/bundle/programs/web.browser/head.html \
|
|
&& find /app/bundle/programs/web.browser -name '*.js' -exec gzip -k -f -9 '{}' \; \
|
|
&& find /app/bundle/programs/web.browser -name '*.css' -exec gzip -k -f -9 '{}' \; \
|
|
&& find /app/bundle/programs/web.browser -name '*.wasm' -exec gzip -k -f -9 '{}' \;
|
|
|
|
FROM node:14.19.1-alpine
|
|
|
|
RUN addgroup -g 2000 meteor && \
|
|
adduser -D -u 2001 -G meteor meteor && \
|
|
apk add su-exec
|
|
COPY --from=alangecker/bbb-docker-base-java /usr/local/bin/dockerize /usr/local/bin/dockerize
|
|
COPY --from=builder --chown=meteor:meteor /app/bundle /app
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY bbb-html5.yml /app/bbb-html5.yml.tmpl
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |