Delete jitsi_admin_websocket_dockerfile
This commit is contained in:
parent
2bc01be2a2
commit
bdf44c24c7
1 changed files with 0 additions and 37 deletions
|
@ -1,37 +0,0 @@
|
|||
ARG NODE_IMAGE_VERSION=23-alpine
|
||||
FROM node:${NODE_IMAGE_VERSION}
|
||||
|
||||
ARG VERSION
|
||||
|
||||
LABEL version="${VERSION}" \
|
||||
Maintainer="H2 invent GmbH" \
|
||||
Description="Docker Image Jitsi Admin Websocket" \
|
||||
org.opencontainers.version="${VERSION}" \
|
||||
org.opencontainers.image.title="Jitsi Admin" \
|
||||
org.opencontainers.image.license="AGPLv3" \
|
||||
org.opencontainers.image.vendor="H2 invent GmbH" \
|
||||
org.opencontainers.image.authors="Emanuel Holzmann <support@h2-invent.com>" \
|
||||
org.opencontainers.image.source="https://github.com/h2-invent/jitsi-admin" \
|
||||
org.opencontainers.image.documentation="https://meetling.de" \
|
||||
org.opencontainers.image.url="https://jitsi-admin.de"
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN apk --no-cache add \
|
||||
curl \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
RUN wget https://github.com/H2-invent/jitsi-admin/releases/download/${VERSION}/websocket.zip -O artifact.zip \
|
||||
&& unzip artifact.zip \
|
||||
&& chown -R nobody . \
|
||||
&& rm artifact.zip
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
USER node
|
||||
|
||||
ENV WEBSOCKET_SECRET=CHANGEME
|
||||
|
||||
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:3000/healthz || exit 1
|
||||
|
||||
CMD [ "node", "." ]
|
Loading…
Add table
Reference in a new issue