We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b6ef8 commit df716b7Copy full SHA for df716b7
Dockerfile
@@ -3,6 +3,9 @@ FROM python:3.7.7-slim-buster
3
COPY .streamlit ~/
4
5
COPY ./requirements.txt /app/requirements.txt
6
+COPY ./README.md /app/README.md
7
+COPY ./setup.py /app/setup.py
8
+RUN mkdir /app/src
9
10
WORKDIR /app
11
setup.py
@@ -23,7 +23,8 @@
23
"streamlit",
24
"pandas",
25
"numpy",
26
- "altair"
+ "altair",
27
+ "pytest"
28
],
29
classifiers=[
30
"Programming Language :: Python :: 3",
0 commit comments