Merge pull request #51 from JeffVandrewJr/master

Add tini to Docker Entrypoint
pull/53/head
saubyk 5 years ago committed by GitHub
commit e822f483fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,7 @@
FROM node:10-alpine
RUN apk add --no-cache tini
WORKDIR /RTL
COPY . /RTL
@ -9,5 +11,6 @@ RUN npm install
EXPOSE 3000
#Run the app server
ENTRYPOINT ["node", "rtl"]
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["node", "rtl"]

Loading…
Cancel
Save