-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (23 loc) · 819 Bytes
/
Copy pathDockerfile
File metadata and controls
28 lines (23 loc) · 819 Bytes
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
# =============================================================================
# AutoStack — Hermes auto-setup stack
# JorahOne
#
# AutoStack is a setup/orchestration toolkit. This Dockerfile provides a CLI
# container for running AutoStack scripts and managing the stack.
# =============================================================================
FROM alpine:3.19
RUN apk add --no-cache \
bash curl jq yq git openssh-client \
docker-cli docker-compose \
python3 py3-pip \
&& rm -rf /var/cache/apk/*
WORKDIR /app
# Copy AutoStack scripts and configs
COPY scripts/ ./scripts/
COPY profiles/ ./profiles/
COPY docs/ ./docs/
# Make scripts executable
RUN find scripts/ -name "*.sh" -exec chmod +x {} \;
# Default entrypoint: bootstrap
ENTRYPOINT ["bash", "scripts/bootstrap.sh"]
CMD ["--help"]