Skip to content

Commit

Permalink
Updated frontend to use offdelay instead of nachlauf
Browse files Browse the repository at this point in the history
  • Loading branch information
cprezzi committed Feb 19, 2020
1 parent 9a46a93 commit 9ea41aa
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 3,068 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
npm-debug.log
bootstrap-4.0.0-beta-dist.zip
InfoDisplay.fw.png
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM node:carbon

# Create app directory
WORKDIR /usr/src/access_auth_server

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./

RUN npm install
# If you are building your code for production
# RUN npm install --only=production

# Bundle app source
COPY . .

EXPOSE 3000
CMD ["node", "server.js"]
Loading

0 comments on commit 9ea41aa

Please sign in to comment.