BinaryONe commited on
Commit
105939e
·
1 Parent(s): 7005076
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -98,8 +98,9 @@ EXPOSE 7860 2222
98
  # Change ownership of /home/admin directory
99
  #RUN chown -R admin:admin /home/admin
100
 
 
 
101
  USER admin
102
- RUN chmod -R 777 /app/
103
 
104
  # Default command to keep the container running
105
- CMD /bin/bash -c "/usr/sbin/sshd -p 2222 && /app/start.sh"
 
98
  # Change ownership of /home/admin directory
99
  #RUN chown -R admin:admin /home/admin
100
 
101
+ RUN chmod -R 777 /app /home
102
+
103
  USER admin
 
104
 
105
  # Default command to keep the container running
106
+ CMD ["/bin/bash","-c","/usr/sbin/sshd -p 2222 && /app/start.sh"]