Block a user
radioconnect (c82e6a1)
Published 2024-12-04 15:01:01 +01:00 by jhogetoorn
Installation
docker pull git.c3dprinting.nl/jhogetoorn/radioconnect:c82e6a1sha256:140179d860a7494fb1ec0f65515ba0f40a2456f6964b7d8aa074ead43febda85
Image Layers
| ADD alpine-minirootfs-3.20.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"] |