Skip to content

Commit

Permalink
Add docker config, Nekland#129
Browse files Browse the repository at this point in the history
  • Loading branch information
Awkan committed Aug 31, 2017
1 parent 2253eb6 commit 958a54b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM php:7.0-cli

# Basic packages
RUN apt-get update && apt-get install -y \
wget \
git \
python-pip \
python-dev

RUN pip install autobahntestsuite \
&& pip install --upgrade six pyasn1

# Install composer
RUN curl -k -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

WORKDIR /usr/src/woketo
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3'

services:
woketo:
build: .
tty: true
volumes:
- .:/usr/src/woketo

0 comments on commit 958a54b

Please sign in to comment.