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

18 lines
354 B
Docker

5 years ago
FROM arm32v7/node:10-jessie-slim
5 years ago
5 years ago
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini-static-armel /tini
5 years ago
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini-static-armel.asc /tini.asc
5 years ago
WORKDIR /RTL
COPY . /RTL
# Install dependencies
RUN npm install
EXPOSE 3000
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["node", "rtl"]