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
2025-03-09 20:00:18 +01:00

8 lines
148 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
CMD [ "/run.sh" ]