1
0
2024-10-26_django_devcontai.../.devcontainer/Dockerfile

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