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

17 lines
189 B
Docker

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