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

13 lines
245 B
Docker

# Create an image based on https://github.com/mhart/alpine-node/tree/f7fedaee10cf8569f4e3eb2c3391eb244636acb6
5 years ago
FROM node:10-alpine
5 years ago
WORKDIR /RTL
5 years ago
COPY . /RTL
# Install dependencies
RUN npm install
#Run the app server
5 years ago
ENTRYPOINT ["node", "rtl"]