Juergen Edelbluth
b7179f1271
Source Code zum Blogbeitrag https://j4n.e7h.eu/article/2024-10-26_18-00-00_django_devcontainer_postgresql_db_redis
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
|