加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 455 Bytes
一键复制 编辑 原始数据 按行查看 历史
jamiesun 提交于 2023-02-14 23:54 . update tr069 features
FROM golang:1.20.0-buster AS builder
COPY . /src
WORKDIR /src
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags \
'-s -w -extldflags "-static"' -o /toughradius main.go
FROM alpine:3.17
RUN apk add --no-cache curl postgresql14-client
COPY --from=builder /toughradius /usr/local/bin/toughradius
RUN chmod +x /usr/local/bin/toughradius
EXPOSE 1816 1817 1818 1819 1812/tcp 1812/udp 1813/udp
ENTRYPOINT ["/usr/local/bin/toughradius"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化