You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
248B

  1. FROM node:20-bookworm
  2. # Install GitHub Copilot CLI
  3. RUN npm install -g @github/copilot
  4. # Install useful dev tools
  5. RUN apt-get update && apt-get install -y \
  6. git \
  7. curl \
  8. && rm -rf /var/lib/apt/lists/*
  9. WORKDIR /workspace
  10. CMD ["bash"]

Powered by TurnKey Linux.