diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..06cd70bb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM node:carbon +WORKDIR /usr/src/app +COPY package*.json ./ +RUN npm install +COPY . . +EXPOSE 8080 +CMD [ "npm", "start" ] diff --git a/views/index.jade b/views/index.jade index 6e6be715..9d5a06ec 100644 --- a/views/index.jade +++ b/views/index.jade @@ -1,7 +1,7 @@ extends layout block content - h1 Find your train! + h1 Find your train! APC p Select your train below to see its current schedule. #wrapper #trainList @@ -10,4 +10,7 @@ block content #trainInfo strong #trainSchedule - strong Select a train to view its current schedule. \ No newline at end of file + strong Select a train to view its current schedule. + + p Your time is now! + h1 NOW