Update Dockerfile
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
@@ -31,12 +31,9 @@ WORKDIR /code-server
|
|
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 |
-
|
40 |
-
|
41 |
-
|
42 |
-
ENTRYPOINT ["entrypoint.sh", "--bind-addr", "0.0.0.0:7860", "."]
|
|
|
31 |
RUN cd ci
|
32 |
|
33 |
# Copy entry point script
|
34 |
+
COPY entrypoint.sh home/entrypoint.sh
|
35 |
|
36 |
# Make entrypoint script executable
|
37 |
RUN chmod +x *
|
38 |
|
39 |
+
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
|
|
|