blob: 42d295e1803c136f5ab34dad117192deb72ca142 (
plain)
1
2
3
4
5
6
7
|
FROM debian:latest
RUN curl -fsSL https://code-server.dev/install.sh | sh
ENV CODE_SERVER_CONFIG="/data/code-server-config.yaml"
EXPOSE 8080
VOLUME [ "/data" ]
ENTRYPOINT [ "code-server", "--bind-addr", "0.0.0.0:8080" ]
|