Skip to content

Instantly share code, notes, and snippets.

@yosisa
Created February 9, 2020 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yosisa/670c85a2d5d400d6a4da182ab061e002 to your computer and use it in GitHub Desktop.
Save yosisa/670c85a2d5d400d6a4da182ab061e002 to your computer and use it in GitHub Desktop.
pyls docker image
FROM python:3.8-buster
RUN pip install python-language-server[all]
RUN printf '#!/bin/bash \
\npip install . \
\npyls \
\n' >/start.sh && chmod +x /start.sh
WORKDIR /work
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment