Skip to content

Commit 09c5556

Browse files
committed
Docker file updated to point to entrypoint.sh
1 parent 051b5ea commit 09c5556

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN adduser --gecos '' --disabled-password coder
3535
RUN echo "coder ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
3636

3737
USER coder
38-
COPY entrypoint /home/coder/project/
38+
COPY entrypoint.sh /home/coder/project/
3939

4040
# We create first instead of just using WORKDIR as when WORKDIR creates, the user is root.
4141
RUN mkdir -p /home/coder/project
@@ -44,4 +44,4 @@ WORKDIR /home/coder/project
4444
COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
4545
EXPOSE 8443
4646

47-
ENTRYPOINT ["dumb-init", "entrypoint", "code-server"]
47+
ENTRYPOINT ["dumb-init", "entrypoint.sh", "code-server"]

0 commit comments

Comments
 (0)