mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
2515d8027d
Dependency updates
20 lines
284 B
Docker
20 lines
284 B
Docker
FROM node:10-alpine
|
|
|
|
RUN apk add --no-cache tini
|
|
|
|
WORKDIR /RTL
|
|
|
|
COPY package.json /RTL/package.json
|
|
COPY package-lock.json /RTL/package-lock.json
|
|
|
|
# Install dependencies
|
|
RUN npm install --only=prod
|
|
|
|
COPY . /RTL
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
|
|
|
CMD ["node", "rtl"]
|