forked from splintered-reality/py_trees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
80 lines (67 loc) · 3.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
################################################################################
# Base
# - a single-version python slim-bullseye image
# Installs
# - poetry in /opt/poetry
# - adds a user called 'zen'
# Size
# - 300MB
################################################################################
ARG PYTHON_VERSION=3.8.15
ARG DEBIAN_VERSION=bullseye
FROM python:${PYTHON_VERSION}-slim-${DEBIAN_VERSION}
ARG NAME=poetry-zen
ARG POETRY_VERSION=1.3.2
ENV POETRY_HOME=/opt/poetry
ENV PATH="${POETRY_HOME}/bin:${PATH}"
################################################################################
# Poetry
################################################################################
RUN apt-get update && apt-get install -y --no-install-recommends \
# For poetry
curl \
# For pytrees
graphviz \
make \
# For convenience
bash \
bash-completion \
ca-certificates \
git \
less \
ssh \
vim \
wget \
&& \
curl -sSL https://install.python-poetry.org | POETRY_VERSION=${POETRY_VERSION} python3 - && \
poetry config virtualenvs.create false && \
poetry completions bash >> ~/.bash_completion
################################################################################
# Login Shells for Debugging & Development
################################################################################
# In a login shell (below), the PATH env doesn't survive, configure it at ground zero
RUN echo "export PATH=${POETRY_HOME}/bin:${PATH}" >> /etc/profile
ENV TERM xterm-256color
ENTRYPOINT ["/bin/bash", "--login", "-i"]
################################################################################
# Development with a user, e.g. for vscode devcontainers
################################################################################
ARG USERNAME=zen
ARG USER_UID=1000
ARG USER_GID=${USER_UID}
RUN groupadd --gid $USER_GID $USERNAME && \
useradd --uid $USER_UID --gid $USER_GID -s "/bin/bash" -m $USERNAME && \
apt-get install -y sudo && \
echo "${USERNAME} ALL=NOPASSWD: ALL" > /etc/sudoers.d/${USERNAME} && \
chmod 0440 /etc/sudoers.d/${USERNAME}
RUN echo "export PS1='\[\033[01;36m\](docker)\[\033[00m\] \[\033[01;32m\]\u@${NAME}\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '" >> /home/${USERNAME}/.bashrc && \
echo "alias ll='ls --color=auto -alFNh'" >> /home/${USERNAME}/.bashrc && \
echo "alias ls='ls --color=auto -Nh'" >> /home/${USERNAME}/.bashrc && \
poetry completions bash >> /home/${USERNAME}/.bash_completion
# touch /home/${USERNAME}/.bash_completion && chown ${USERNAME}:${USERNAME} /home/${USERNAME}/.bash_completion
################################################################################
# Debugging with root
################################################################################
RUN echo "export PS1='\[\033[01;36m\](docker)\[\033[00m\] \[\033[01;32m\]\u@${NAME}\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '" >> ${HOME}/.bashrc && \
echo "alias ll='ls --color=auto -alFNh'" >> ${HOME}/.bashrc && \
echo "alias ls='ls --color=auto -Nh'" >> ${HOME}/.bashrc