Node + Serve,Static file serving and directory listing.
87
Node + Serve ,Static file serving and directory listing.
https://github.com/vercel/serve
FROM node:16.16.0-alpine
RUN npm install --location=global serve
docker build -t lufuhu/node-serve:16.16.0-alpine .
docker push lufuhu/node-serve:16.16.0-alpine
FROM lufuhu/node-serve:16.16.0-alpine
COPY /dist /web
WORKDIR /web
CMD ["npx", "serve -p 3001 --no-clipboard"]
Content type
Image
Digest
sha256:8468091e1…
Size
42.5 MB
Last updated
about 4 years ago
docker pull lufuhu/node-serve:16.16.0-alpine