RTL/Dockerfile
Jeff Vandrew Jr 8142a0e954 dockerfile
2019-02-15 00:49:04 -05:00

13 lines
148 B
Docker

FROM node:10-alpine
WORKDIR /RTL
COPY . /RTL
# Install dependencies
RUN npm install
EXPOSE 3000
#Run the app server
ENTRYPOINT ["node", "rtl"]