Ride-The-Lightning-RTL/Dockerfile

17 lines
189 B
Text
Raw Normal View History

2019-02-13 17:35:12 -05:00
FROM node:10-alpine
2019-02-15 22:43:57 -05:00
RUN apk add --no-cache tini
2019-02-13 17:35:12 -05:00
WORKDIR /RTL
2019-02-13 17:35:12 -05:00
COPY . /RTL
# Install dependencies
RUN npm install
2019-02-15 00:49:04 -05:00
EXPOSE 3000
2019-02-15 22:43:57 -05:00
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["node", "rtl"]