Skip to content

Commit 1c97f40

Browse files
committed
fix
1 parent e1ae16d commit 1c97f40

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/build-linux-release.yml

+1-15
Original file line numberDiff line numberDiff line change
@@ -135,27 +135,13 @@ jobs:
135135
FROM alpine:3.21
136136
137137
# 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
151139
152140
WORKDIR /app
153141
154142
COPY ctx /usr/local/bin/ctx
155143
RUN chmod +x /usr/local/bin/ctx
156144
157-
RUN /usr/local/bin/ctx completion | tee /etc/bash_completion.d/ctx
158-
159145
ENTRYPOINT ["ctx"]
160146
EOF
161147

0 commit comments

Comments
 (0)