460d136d21
Spun out of the hbm-books working folder into its own repo. A small backend+frontend+COBOL admin tool for managing Foundry VTT worlds (socket inspection, join/shutdown debugging).
5 lines
169 B
Docker
5 lines
169 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache gnucobol build-base curl
|
|
WORKDIR /app
|
|
CMD ["sh", "-c", "echo 'COBOL Container Ready. Shared files are in /app/shared.' && sh"]
|