Manofem commited on
Commit
54d272c
·
verified ·
1 Parent(s): 347402f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -31,13 +31,13 @@ WORKDIR /code-server
31
  RUN cd ci
32
 
33
  # Copy entry point script
34
- COPY entrypoint.sh /code-server/ci/entrypoint.sh
35
 
36
  # Make entrypoint script executable
37
- RUN chmod +x entrypoint.sh
38
 
39
  # Expose port for code-server
40
  EXPOSE 8080
41
 
42
  # Set the entry point
43
- ENTRYPOINT ["/code-server/entrypoint.sh"]
 
31
  RUN cd ci
32
 
33
  # Copy entry point script
34
+ COPY entrypoint.sh entrypoint.sh
35
 
36
  # Make entrypoint script executable
37
+ RUN chmod +x *
38
 
39
  # Expose port for code-server
40
  EXPOSE 8080
41
 
42
  # Set the entry point
43
+ ENTRYPOINT ["entrypoint.sh"]