mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
2515d8027d
Dependency updates
34 lines
788 B
Docker
34 lines
788 B
Docker
FROM node:10-jessie-slim AS builder
|
|
|
|
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini-static-armel /tini
|
|
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini-static-armel.asc /tini.asc
|
|
RUN apt-get install gnupg
|
|
RUN gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 595E85A6B1B4779EA4DAAEC70B588DFF0527A9B7 \
|
|
&& gpg --batch --verify /tini.asc /tini
|
|
RUN chmod +x /tini
|
|
|
|
WORKDIR /RTL
|
|
|
|
COPY . /RTL
|
|
|
|
COPY package.json /RTL/package.json
|
|
COPY package-lock.json /RTL/package-lock.json
|
|
|
|
# Install dependencies
|
|
RUN npm install --only=prod
|
|
|
|
COPY . /RTL
|
|
|
|
FROM arm32v7/node:10-jessie-slim
|
|
|
|
WORKDIR /RTL
|
|
|
|
COPY --from=builder "/RTL" .
|
|
COPY --from=builder "/tini" /sbin/tini
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
|
|
|
CMD ["node", "rtl"]
|