960f03269c
documentation - Rename crate from workshop-executor to workshop-baker - Add MDBook documentation infrastructure with Chinese docs (Vol1/2/3) - Implement engine module with cgroups resource management - Add package manager support (apt, pacman) - Add daemon module with Unix socket IPC and heartbeat - Add privdrop dependency for privilege dropping - Implement prebake stages (bootstrap, depssystem, depsuser, environment, hooks) - Add new bake.sh.tmpl pipeline template for osu! project - Add pipeline implicit parameter documentation (PIPELINE_BAREMETAL_*, PIPELINE_CONTAINER_*, PIPELINE_UNCOVER_SECRET)
6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
FROM alpine:latest
|
|
RUN echo "Hello from Docker!" && \
|
|
aps add --no-cache curl && \
|
|
curl --version
|
|
CMD ["sh", "-c", "echo 'Container started' && sleep 3600"]
|