Skip to content

Commit

Permalink
dockerize the mateplay web interface
Browse files Browse the repository at this point in the history
  • Loading branch information
uwekamper committed Nov 16, 2017
1 parent 5bf4c67 commit a0d6281
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.git/

build
dist
*.egg-info
*.egg/
*.pyc
*.swp

.tox
.coverage
html/*
__pycache__

# Compiled Documentation
docs/_build

node_modules/
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:carbon-alpine
RUN apk add --update ffmpeg
WORKDIR /mateplay
COPY . .
RUN npm install
CMD [ "node", "bin/server.js" ]

0 comments on commit a0d6281

Please sign in to comment.