saroj502 commited on
Commit
ec2b19f
·
1 Parent(s): 119f849
Files changed (3) hide show
  1. Dockerfile +1 -1
  2. code/hello.py +1 -0
  3. 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/requirements.txt
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