File tree 1 file changed +1
-15
lines changed
1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -135,27 +135,13 @@ jobs:
135
135
FROM alpine:3.21
136
136
137
137
# Install dependencies
138
- RUN apk add --no-cache libstdc++ libgcc bash ncurses
139
-
140
- # Set up bash as the default shell
141
- SHELL ["/bin/bash", "-c"]
142
-
143
- # Enable color support
144
- ENV TERM=xterm-256color
145
- ENV COLORTERM=truecolor
146
-
147
- # Configure bash to use colors
148
- RUN echo 'export PS1="\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ "' >> /etc/profile
149
- RUN echo 'alias ls="ls --color=auto"' >> /etc/profile
150
- RUN echo 'alias grep="grep --color=auto"' >> /etc/profile
138
+ RUN apk add --no-cache libstdc++ libgcc
151
139
152
140
WORKDIR /app
153
141
154
142
COPY ctx /usr/local/bin/ctx
155
143
RUN chmod +x /usr/local/bin/ctx
156
144
157
- RUN /usr/local/bin/ctx completion | tee /etc/bash_completion.d/ctx
158
-
159
145
ENTRYPOINT ["ctx"]
160
146
EOF
161
147
You can’t perform that action at this time.
0 commit comments