1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 02:31:31 +00:00
dockerfiles/jamapi/Dockerfile
2017-05-08 07:05:07 +08:00

20 lines
396 B
Docker

#
# Dockerfile for jamapi
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
WORKDIR /app
RUN set -xe \
&& apk add -U ca-certificates curl nodejs tar \
&& curl -sSL https://github.com/gavindinubilo/jam-api/archive/master.tar.gz | tar xz --strip 1 \
&& npm install --production \
&& apk del curl tar \
&& rm -rf /tmp/npm* /var/cache/apk/*
EXPOSE 5000
CMD ["node", "index"]