Ride-The-Lightning-RTL/Dockerfile

17 lines
189 B
Docker
Raw Normal View History

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