Skip to content

Commit

Permalink
Moving to a server directory, wrapping with a trival docker
Browse files Browse the repository at this point in the history
  • Loading branch information
bdfhjk committed Mar 31, 2016
1 parent eaf7777 commit 736a9a5
Show file tree
Hide file tree
Showing 20 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions server/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:2.7
ADD . /
WORKDIR /
RUN pip install -r requirements.txt
CMD python -m "SimpleHTTPServer" 8124
EXPOSE 8124
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions server/frontend/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '2'
services:
web:
build: .
ports:
- "8124:8124"
volumes:
- .:/code
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions server/frontend/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 0 additions & 1 deletion server/interface/readme.md

This file was deleted.

0 comments on commit 736a9a5

Please sign in to comment.