13 lines
378 B
Docker
13 lines
378 B
Docker
|
FROM python:3-alpine
|
||
|
|
||
|
RUN apk update && apk upgrade
|
||
|
RUN apk add git gpg wget curl bash bash-completion shadow nano starship openssh-client openssh-sftp-server sqlite sqlite-dev
|
||
|
|
||
|
RUN chsh -s /bin/bash
|
||
|
RUN echo 'eval "$(starship init bash)"' >> ~/.bashrc
|
||
|
|
||
|
RUN python3 -m pip install -U pip
|
||
|
RUN python3 -m pip install -U pipx
|
||
|
RUN python3 -m pipx ensurepath
|
||
|
RUN pipx install poetry
|