* make START_DIR configurable * fix permissions order * fix start dir bug * fix logic * make START_DIR * cool loggins * reuse clone function * i'm a bash noob * even more of a bash noob * add hashed info * add ability to add tasks * add vs code instructions for task * rclone fix * document vscode tasks * fix labels * mention additional variables * add better docs for dev tools * support rclone flags
43 lines
1.2 KiB
Docker
43 lines
1.2 KiB
Docker
# Start from the code-server Debian base image
|
|
FROM codercom/code-server:latest
|
|
|
|
USER coder
|
|
|
|
# Apply VS Code settings
|
|
COPY deploy-container/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
|
|
|
|
# Copy rclone tasks to /tmp, to potentially be used
|
|
COPY deploy-container/rclone-tasks.json /tmp/rclone-tasks.json
|
|
|
|
# Fix permissions for code-server
|
|
RUN sudo chown -R coder:coder /home/coder/.local
|
|
|
|
# You can add custom software and dependencies for your environment below
|
|
# -----------
|
|
|
|
# Install a VS Code extension:
|
|
# Note: we use a different marketplace than VS Code. See https://github.com/cdr/code-server/blob/main/docs/FAQ.md#differences-compared-to-vs-code
|
|
# RUN code-server --install-extension esbenp.prettier-vscode
|
|
|
|
# Install apt packages:
|
|
# RUN sudo apt-get install -y ubuntu-make
|
|
|
|
# Copy files:
|
|
# COPY deploy-container/myTool /home/coder/myTool
|
|
|
|
# -----------
|
|
|
|
# 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"]
|