You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/Dockerfile.arm32v7

17 lines
197 B
Docker

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