1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 22:08:39 +00:00
dockerfiles/json-server/Dockerfile

19 lines
295 B
Docker
Raw Normal View History

2016-05-09 02:28:37 +00:00
#
# Dockerfile for json-server
#
2021-10-11 11:29:24 +00:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
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/*
2021-10-11 11:29:24 +00:00
WORKDIR /data
2016-05-09 02:28:37 +00:00
EXPOSE 3000
ENTRYPOINT ["json-server"]
CMD ["--help"]