8 lines
143 B
Docker
8 lines
143 B
Docker
|
FROM codercom/code-server:latest
|
||
|
|
||
|
RUN sudo apt-get update && sudo apt-get install -y \
|
||
|
python3 \
|
||
|
python3-venv \
|
||
|
python3-pip \
|
||
|
&& apt-get clean
|