You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
FROM alpine as prezto-devel
|
|
LABEL maintainer="h@hlo.mx"
|
|
RUN apk --no-cache update && apk upgrade && \
|
|
apk add make grep zsh git
|
|
RUN addgroup prezto && adduser -D prezto -G prezto -S /bin/zsh
|
|
WORKDIR /home/prezto
|
|
USER prezto
|
|
RUN cd /home/prezto && mkdir src
|
|
COPY . src
|
|
RUN cp src/Makefile .
|
|
RUN make .clone
|
|
RUN make src .homercs
|
|
# ENTRYPOINT ["/bin/zsh", "-"]
|
|
CMD ["/bin/zsh","-l","-o","verbose","-o","xtrace","-o","sourcetrace"]
|
|
|
|
|
|
|
|
|