Skip to content

Commit 123031c

Browse files
committed
Added dockerfile for dev
1 parent d499350 commit 123031c

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.5
2+
3+
RUN mkdir /code
4+
WORKDIR /code
5+
6+
ADD requirements.txt /code/
7+
RUN pip install -r requirements.txt
8+
9+
ADD . /code/

docker-compose.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: '2'
2+
services:
3+
app:
4+
build: .
5+
command: python -m unittest discover
6+
volumes:
7+
- .:/code

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cryptography==1.3.2

0 commit comments

Comments
 (0)