2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/Dockerfile
Jeff Vandrew Jr 7d59cbdc28 tini
2019-02-15 22:43:57 -05:00

17 lines
189 B
Docker

FROM node:10-alpine
RUN apk add --no-cache tini
WORKDIR /RTL
COPY . /RTL
# Install dependencies
RUN npm install
EXPOSE 3000
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["node", "rtl"]