nezha/Dockerfile

22 lines
559 B
Docker
Raw Normal View History

2020-10-29 00:00:58 +08:00
FROM golang:alpine AS binarybuilder
RUN apk --no-cache --no-progress add \
2020-10-29 11:20:32 +08:00
gcc git musl-dev
2020-10-29 00:00:58 +08:00
WORKDIR /dashboard
COPY . .
RUN cd cmd/dashboard && go build -o app -ldflags="-s -w"
2020-10-29 00:14:31 +08:00
2020-10-29 00:00:58 +08:00
FROM alpine:latest
ENV TZ="Asia/Shanghai"
2020-10-29 00:00:58 +08:00
RUN apk --no-cache --no-progress add \
ca-certificates \
tzdata && \
cp "/usr/share/zoneinfo/$TZ" /etc/localtime && \
echo "$TZ" > /etc/timezone
2020-10-29 00:00:58 +08:00
WORKDIR /dashboard
2020-10-29 00:14:31 +08:00
COPY ./resource ./resource
2020-10-29 00:00:58 +08:00
COPY --from=binarybuilder /dashboard/cmd/dashboard/app ./app
VOLUME ["/dashboard/data"]
2020-11-06 21:00:42 +08:00
EXPOSE 80 5555
2020-11-06 20:51:23 +08:00
CMD ["/dashboard/app"]