min-report/Dockerfile

16 lines
196 B
Docker
Raw Permalink Normal View History

2023-10-05 04:02:46 +00:00
FROM ubuntu:jammy
ARG TARGETARCH
WORKDIR /
COPY ./dist/docker_linux_$TARGETARCH*/min_report /min_report
RUN chmod -R 777 /min_report
EXPOSE 12700
VOLUME /logs
2023-12-29 08:50:37 +00:00
ENTRYPOINT [ "/min_report" ]