mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-29 09:58:55 +01:00
12 lines
288 B
Docker
12 lines
288 B
Docker
FROM woahbase/alpine-libreoffice
|
|
|
|
USER root
|
|
|
|
RUN apk add su-exec
|
|
# should use the same user ID as in `core` to avoid file permission issues
|
|
RUN addgroup -g 998 bigbluebutton && adduser -D -u 998 -G bigbluebutton bigbluebutton
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
|
|
ENTRYPOINT /entrypoint.sh
|