We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ac050 commit 3e46485Copy full SHA for 3e46485
layers/base/Dockerfile
@@ -114,6 +114,9 @@ COPY conf/bash/bashrc /root/.bashrc
114
RUN chown -R root:root /root && \
115
chmod +x /root/.bashrc
116
117
+# Copy profile (task bash completion)
118
+COPY conf/profile.d/task-completion.sh /etc/profile.d
119
+
120
# Copy environment helper scripts
121
COPY scripts/bash/* /build/bin/
122
layers/base/conf/profile.d/task-completion.sh
@@ -0,0 +1 @@
1
+eval "$(task --completion bash)"
0 commit comments