docker/mod/bbb-pads/Dockerfile

18 lines
443 B
Docker
Raw Normal View History

2023-09-12 18:31:01 +02:00
FROM node:18-bullseye-slim AS builder
COPY ./bbb-pads /bbb-pads
RUN cd /bbb-pads && rm -r .git && npm install --production
RUN chmod 777 /bbb-pads/config
# ------------------------------
2023-09-12 18:31:01 +02:00
FROM node:18-bullseye-slim
RUN apt update && apt install -y jq moreutils \
2023-03-21 12:59:59 +01:00
&& useradd --uid 2003 --create-home --user-group bbb-pads
COPY --from=builder /bbb-pads /bbb-pads
USER bbb-pads
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh