blob: cea6cf9653253f9fc8be6cc56f58a285dfaa3b9a (
plain)
1
2
3
4
5
6
7
8
9
|
FROM debian:latest
COPY install-code-server.bash /install-code-server.bash
RUN /install-code-server.bash
ENV CODE_SERVER_CONFIG="/data/code-server-config.yaml"
EXPOSE 8080
VOLUME [ "/data" ]
ENTRYPOINT [ "code-server", "--bind-addr", "0.0.0.0:8080" ]
|