Update Dockerfile
Browse files- 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
|
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 ["
|
|
|
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"]
|