1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/json-server/Dockerfile

19 lines
291 B
Docker
Raw Normal View History

2016-05-09 02:28:37 +00:00
#
# Dockerfile for json-server
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-05-09 02:28:37 +00:00
WORKDIR /data
2016-05-09 02:28:37 +00:00
RUN set -xe \
2017-07-10 09:02:16 +00:00
&& apk add --no-cache nodejs nodejs-npm \
2016-05-09 02:28:37 +00:00
&& npm install -g json-server \
&& rm -rf /tmp/npm* /var/cache/apk/*
EXPOSE 3000
ENTRYPOINT ["json-server"]
CMD ["--help"]