updated
Browse files- Dockerfile +1 -1
- code/hello.py +1 -0
- code/requirement.txt +0 -0
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ WORKDIR /code
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
-
RUN pip install --no-cache-dir --upgrade -r /code/
|
8 |
|
9 |
COPY . .
|
10 |
|
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
+
RUN pip install --no-cache-dir --upgrade -r /code/hello.py
|
8 |
|
9 |
COPY . .
|
10 |
|
code/hello.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
print("Hello")
|
code/requirement.txt
DELETED
File without changes
|