File: Dockerfile

package info (click to toggle)
emacs-lsp-docker 1.0.0%2Bgit20250423.ff41f4a-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: lisp: 705; sh: 50; makefile: 24; cpp: 19; javascript: 13; python: 10
file content (12 lines) | stat: -rw-r--r-- 275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# Add 2 language servers for manual testing.

# using specific version for repeatibility
FROM python:3.12-rc

RUN python -m pip install \
    python-lsp-server

RUN apt-get update && apt-get install -y \
    clangd \
    && apt-get clean \
    && rm -rf /var/lib/apt/lists/*