Block a user
radioconnect (779e8be)
Published 2025-02-04 17:33:41 +01:00 by jhogetoorn
Installation
docker pull git.c3dprinting.nl/jhogetoorn/radioconnect:779e8besha256:c5ea4715280b2b86d0277eb749a0b0e57b7eb2f2767d1bbd372cb85666a7257e
Image Layers
| ADD alpine-minirootfs-3.21.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 |
| COPY package*.json ./ # buildkit |
| RUN /bin/sh -c npm install # buildkit |
| COPY . . # buildkit |
| EXPOSE map[3000/tcp:{}] |
| CMD ["npm" "start"] |