Skip to content

Commit 1d82510

Browse files
committed
Initial Dockerfile implementation
1 parent d46a712 commit 1d82510

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.dockerignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
__pycache__
2+
.git
3+
.idea
4+
.DS_Store
5+
.gitignore
6+
env
7+
8+
# Ignore repo config files
9+
config_*

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3
2+
MAINTAINER Charles Powell <cbpowell@gmailcom>
3+
4+
# Add all files
5+
ADD .
6+
7+
# Install all dependencies
8+
RUN pip install -r requirements.txt
9+
10+
# Run
11+
CMD ["python", "-m", "SenseLink"]

0 commit comments

Comments
 (0)