mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-04 04:30:05 +00:00
🔊 v0.3.0 计划任务(定期备份等场景)
This commit is contained in:
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM golang:alpine AS binarybuilder
|
||||
RUN apk --no-cache --no-progress add \
|
||||
gcc git musl-dev
|
||||
WORKDIR /dashboard
|
||||
COPY . .
|
||||
RUN cd cmd/dashboard && go build -o app -ldflags="-s -w"
|
||||
|
||||
FROM alpine:latest
|
||||
ENV TZ="Asia/Shanghai"
|
||||
RUN apk --no-cache --no-progress add \
|
||||
ca-certificates \
|
||||
tzdata && \
|
||||
cp "/usr/share/zoneinfo/$TZ" /etc/localtime && \
|
||||
echo "$TZ" > /etc/timezone
|
||||
WORKDIR /dashboard
|
||||
COPY ./resource ./resource
|
||||
COPY --from=binarybuilder /dashboard/cmd/dashboard/app ./app
|
||||
|
||||
VOLUME ["/dashboard/data"]
|
||||
EXPOSE 80 5555
|
||||
CMD ["/dashboard/app"]
|
||||
Reference in New Issue
Block a user