25 lines
665 B
Docker
25 lines
665 B
Docker
# Start from the code-server Debian base image
|
|
FROM codercom/code-server:latest
|
|
|
|
USER coder
|
|
|
|
# Apply VS Code settings
|
|
COPY settings.json .local/share/code-server/User/settings.json
|
|
|
|
# Use bash shell
|
|
ENV SHELL=/bin/bash
|
|
|
|
# Install unzip + rclone (support for remote filesystem)
|
|
RUN sudo apt-get update && sudo apt-get install unzip -y
|
|
RUN curl https://rclone.org/install.sh | sudo bash
|
|
|
|
# Fix permissions for code-server
|
|
RUN sudo chown -R coder:coder /home/coder/.local
|
|
|
|
# Port
|
|
ENV PORT=8080
|
|
|
|
# Use our custom entrypoint script first
|
|
COPY deploy-container-entrypoint.sh /usr/bin/deploy-container-entrypoint.sh
|
|
ENTRYPOINT ["/usr/bin/deploy-container-entrypoint.sh"]
|