123456789101112131415161718192021 |
- FROM python:3.10
- RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
- code-server --install-extension ms-python.python &&\
- code-server --install-extension eamodio.gitlens &&\
- echo done
- RUN apt-get update && apt-get install -y wget unzip openssh-server
- ENV LANG C.UTF-8
- ENV LANGUAGE C.UTF-8
- WORKDIR /app
- VOLUME [ "/app" ]
|