1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-03 13:21:35 +02:00

19 lines
288 B
Docker
Raw Normal View History

2016-05-09 10:28:37 +08:00
#
# Dockerfile for json-server
#
2021-10-11 19:29:24 +08:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-05-09 10:28:37 +08:00
RUN set -xe \
2024-02-06 22:04:41 +08:00
&& apk add --no-cache nodejs npm \
2016-05-09 10:28:37 +08:00
&& npm install -g json-server \
&& rm -rf /tmp/npm* /var/cache/apk/*
2021-10-11 19:29:24 +08:00
WORKDIR /data
2016-05-09 10:28:37 +08:00
EXPOSE 3000
ENTRYPOINT ["json-server"]
CMD ["--help"]