mini backend como service con db.json y json-server
10K+
FROM node:18
WORKDIR /app
RUN apt-get update && apt-get install -y curl
RUN curl -o db.json https://raw.githubusercontent.com/pacodan/restaurant/main/db.json
RUN npm install json-server
EXPOSE 3000
CMD ["npx", "json-server", "db.json"]
Content type
Image
Digest
sha256:d73916b8c…
Size
381.6 MB
Last updated
over 3 years ago
docker pull jhonpaco/restaurant