You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
459 B
25 lines
459 B
3 years ago
|
FROM golang:1.15 AS builder
|
||
|
|
||
|
COPY . /src
|
||
|
WORKDIR /src
|
||
|
|
||
|
RUN GOPROXY=https://goproxy.cn make build
|
||
|
|
||
|
FROM debian:stable-slim
|
||
|
|
||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
ca-certificates \
|
||
|
netbase \
|
||
|
&& rm -rf /var/lib/apt/lists/ \
|
||
|
&& apt-get autoremove -y && apt-get autoclean -y
|
||
|
|
||
|
COPY --from=builder /src/bin /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
EXPOSE 8000
|
||
|
EXPOSE 9000
|
||
|
VOLUME /data/conf
|
||
|
|
||
|
CMD ["./server", "-conf", "/data/conf"]
|