minnehwg commited on
Commit
9e25683
1 Parent(s): 3f9d623

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -27,4 +27,7 @@ WORKDIR $HOME/app
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
 
 
 
 
30
  CMD ["python", "app.py"]
 
27
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
28
  COPY --chown=user . $HOME/app
29
 
30
+ # Copy util.py into the container
31
+ COPY --chown=user util.py $HOME/app/util.py
32
+
33
  CMD ["python", "app.py"]