pmolchanov commited on
Commit
644ab6f
·
verified ·
1 Parent(s): 3977711

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -32,6 +32,9 @@ WORKDIR $HOME/app
32
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
33
  COPY --chown=user . $HOME/app
34
 
 
 
 
35
  RUN echo "Hello from Dockerfile!"
36
 
37
  CMD ["python3", "app.py"]
 
32
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
33
  COPY --chown=user . $HOME/app
34
 
35
+ RUN chmod g=u /etc/passwd /etc/group
36
+
37
+
38
  RUN echo "Hello from Dockerfile!"
39
 
40
  CMD ["python3", "app.py"]