Skip to content

Commit 02d3466

Browse files
committed
feat: docker setup
1 parent 912efcb commit 02d3466

File tree

5 files changed

+23
-0
lines changed

5 files changed

+23
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
132+
.devcontainer/

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM python:3.7
2+
3+
COPY . /app
4+
RUN pip install pip==20.0.1 \
5+
&& pip install --no-cache-dir --upgrade -r requirements.txt \
6+
&& pip install --no-cache-dir --upgrade -r requirements-dev.txt

KVDbClient/__init__.py

Whitespace-only changes.

requirements-dev.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pylint
2+
black
3+
pyopenssl
4+
jupyter

requirements.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
cloud-files
2+
grpcio>=1.36.1
3+
certifi>=2020.12.5
4+
numpy
5+
pandas
6+
scikit-learn
7+
multiwrapper
8+
zstandard
9+
codecov
10+
google-cloud-bigtable

0 commit comments

Comments
 (0)