generated from oci/template
include upstream entrypoint manually
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 55s
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 55s
This commit is contained in:
parent
03af14d425
commit
c513954671
1 changed files with 4 additions and 1 deletions
|
@ -33,5 +33,8 @@ RUN apt-get update && \
|
|||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
## Workaround as above somehow removed the entrypoint.sh
|
||||
RUN curl -o /usr/bin/entrypoint.sh https://raw.githubusercontent.com/coder/code-server/main/ci/release-image/entrypoint.sh && \
|
||||
chmod +x /usr/bin/entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/usr/bin/entrypoint.sh" "--bind-addr" "0.0.0.0:8080" "/workspace"]
|
||||
ENTRYPOINT ["/usr/bin/entrypoint.sh", "--bind-addr", "0.0.0.0:8080", "/workspace"]
|
Loading…
Reference in a new issue