Archived
3
0
This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zmp24-docs/image/image.dockerfile
Ondřej Mekina 5513042b1b
Some checks failed
Check indentation / build (push) Has been cancelled
Continuous testing / build (push) Has been cancelled
extract config to external files
2025-03-12 23:08:40 +01:00

9 lines
206 B
Docker

FROM docker.io/alpine:latest
COPY ./zmp24 /usr/bin/zmp24
COPY ./run.sh /run.sh
RUN apk update && apk add gcompat && mkdir /data && mkdir /default
COPY ./config.toml /default/config.toml
CMD [ "/run.sh" ]