Block a user
radioconnect (4554f00)
Published 2025-11-28 15:32:07 +01:00 by jhogetoorn
Installation
docker pull git.c3dprinting.nl/jhogetoorn/radioconnect:4554f00sha256:d174da125fe7161e8d13f0b07b29bf9453da2105aac6304447c630502e611941
Image Layers
| ADD alpine-minirootfs-3.22.2-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 |
| RUN /bin/sh -c apk add --no-cache tzdata # buildkit |
| ENV TZ=Europe/Amsterdam |
| COPY package*.json ./ # buildkit |
| RUN /bin/sh -c npm install # buildkit |
| COPY . . # buildkit |
| EXPOSE map[3000/tcp:{}] |
| CMD ["npm" "start"] |