ContainerImage.JSONServer/Dockerfile

16 lines
261 B
Docker
Raw Normal View History

2023-07-11 12:11:58 +00:00
FROM node:lts-slim AS build
2023-05-10 09:42:08 +00:00
2023-07-11 07:43:26 +00:00
RUN npm install -g --omit=optional --omit=dev \
2023-07-10 19:11:00 +00:00
json-server && \
npm cache clean --force
2023-05-10 09:42:08 +00:00
COPY init/entrypoint.sh /opt/entrypoint.sh
WORKDIR /data
VOLUME /data
EXPOSE 80
ENTRYPOINT ["bash", "/opt/entrypoint.sh"]
CMD []