mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
037364d17c
updated docker arm64
30 lines
497 B
Docker
30 lines
497 B
Docker
FROM node:10-stretch-slim AS builder
|
|
|
|
ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini-static-arm64 /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
|
|
|
|
COPY . /RTL
|
|
|
|
FROM arm64v8/node:10-stretch-slim
|
|
|
|
WORKDIR /RTL
|
|
|
|
COPY --from=builder "/RTL" .
|
|
COPY --from=builder "/tini" /sbin/tini
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
|
|
|
CMD ["node", "rtl"]
|