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/docker/Dockerfile

20 lines
285 B
Docker

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