Ride-The-Lightning-RTL/Dockerfile

13 lines
245 B
Docker
Raw Normal View History

# Create an image based on https://github.com/mhart/alpine-node/tree/f7fedaee10cf8569f4e3eb2c3391eb244636acb6
2019-02-13 23:35:12 +01:00
FROM node:10-alpine
2019-02-13 23:35:12 +01:00
WORKDIR /RTL
2019-02-13 23:35:12 +01:00
COPY . /RTL
# Install dependencies
RUN npm install
#Run the app server
2019-02-13 23:35:12 +01:00
ENTRYPOINT ["node", "rtl"]