diff --git a/jitsi_admin_websocket_dockerfile b/jitsi_admin_websocket_dockerfile deleted file mode 100644 index b098b80..0000000 --- a/jitsi_admin_websocket_dockerfile +++ /dev/null @@ -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 " \ - 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", "." ] \ No newline at end of file