2022-07-06 22:27:14 -04:00
|
|
|
FROM ubuntu:latest
|
2020-10-28 12:14:31 -04:00
|
|
|
|
2022-07-06 22:27:14 -04:00
|
|
|
ARG TARGETPLATFORM
|
2021-01-18 20:59:04 -05:00
|
|
|
ENV TZ="Asia/Shanghai"
|
2022-07-06 22:27:14 -04:00
|
|
|
|
2022-05-17 08:54:01 -04:00
|
|
|
COPY ./script/entrypoint.sh /entrypoint.sh
|
2022-07-06 22:27:14 -04:00
|
|
|
|
|
|
|
RUN export DEBIAN_FRONTEND="noninteractive" &&
|
|
|
|
apt update && apt install -y ca-certificates tzdata &&
|
|
|
|
update-ca-certificates &&
|
|
|
|
ln -fs /usr/share/zoneinfo/$TZ /etc/localtime &&
|
|
|
|
dpkg-reconfigure tzdata &&
|
2022-05-17 07:52:02 -04:00
|
|
|
chmod +x /entrypoint.sh
|
2022-07-06 22:27:14 -04:00
|
|
|
|
2020-10-28 12:00:58 -04:00
|
|
|
WORKDIR /dashboard
|
2020-10-28 12:14:31 -04:00
|
|
|
COPY ./resource ./resource
|
2022-07-06 22:27:14 -04:00
|
|
|
COPY target/$TARGETPLATFORM/dashboard ./app
|
2020-10-28 12:00:58 -04:00
|
|
|
|
|
|
|
VOLUME ["/dashboard/data"]
|
2020-11-06 08:00:42 -05:00
|
|
|
EXPOSE 80 5555
|
2022-05-17 07:52:02 -04:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|