Block a user
radioconnect (9b5646c)
Published 2025-03-07 14:36:53 +01:00 by jhogetoorn
Installation
docker pull git.c3dprinting.nl/jhogetoorn/radioconnect:9b5646csha256:688af927b96a46c30c1266793ea1ff0ee805d6478e52ea36f68911ee7a54bf45
Image Layers
| ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /usr/src/app |
| ENV ALPINE_MIRROR=http://dl-cdn.alpinelinux.org/alpine |
| RUN /bin/sh -c echo "${ALPINE_MIRROR}/v3.11/main/" >> /etc/apk/repositories # buildkit |
| RUN /bin/sh -c apk add --update --no-cache nodejs --repository="http://dl-cdn.alpinelinux.org/alpine/v3.11/main/" # buildkit |
| RUN /bin/sh -c apk add --update --no-cache npm # buildkit |
| COPY package*.json ./ # buildkit |
| RUN /bin/sh -c npm install # buildkit |
| COPY . . # buildkit |
| EXPOSE map[3000/tcp:{}] |
| CMD ["npm" "start"] |