nezha/Dockerfile

20 lines
414 B
Docker
Raw Permalink Normal View History

2024-09-02 23:19:43 +08:00
FROM alpine AS certs
RUN apk update && apk add ca-certificates
FROM busybox:stable-musl
2022-07-07 14:45:03 +08:00
ARG TARGETOS
ARG TARGETARCH
2024-09-02 23:19:43 +08:00
COPY --from=certs /etc/ssl/certs /etc/ssl/certs
COPY ./script/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2020-10-29 00:00:58 +08:00
WORKDIR /dashboard
2022-07-07 13:54:19 +08:00
COPY dist/dashboard-${TARGETOS}-${TARGETARCH} ./app
2020-10-29 00:00:58 +08:00
VOLUME ["/dashboard/data"]
2020-11-06 21:00:42 +08:00
EXPOSE 80 5555
ARG TZ=Asia/Shanghai
ENV TZ=$TZ
2022-05-17 19:52:02 +08:00
ENTRYPOINT ["/entrypoint.sh"]