Spaces:
Paused
Paused
File size: 975 Bytes
8d1819a |
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 |
# Use the pre-built base image for A0
# FROM agent-zero-base:local
FROM agent0ai/agent-zero-base:latest
# Set BRANCH to "local" if not provided
ARG BRANCH=local
ENV BRANCH=$BRANCH
# Copy filesystem files to root
COPY ./docker/run/fs/ /
# Copy current development files to git, they will only be used in "local" branch
COPY ./ /git/agent-zero
# pre installation steps
RUN bash /ins/pre_install.sh $BRANCH
# install A0
RUN bash /ins/install_A0.sh $BRANCH
# install additional software
RUN bash /ins/install_additional.sh $BRANCH
# cleanup repo and install A0 without caching, this speeds up builds
ARG CACHE_DATE=none
RUN echo "cache buster $CACHE_DATE" && bash /ins/install_A02.sh $BRANCH
# post installation steps
RUN bash /ins/post_install.sh $BRANCH
# Expose ports
EXPOSE 22 80 9000-9009
RUN chmod +x /exe/initialize.sh /exe/run_A0.sh /exe/run_searxng.sh /exe/run_tunnel_api.sh
# initialize runtime and switch to supervisord
CMD ["/exe/initialize.sh", "$BRANCH"]
|