ETCD后台服务
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.
 
 
 
 

10 lines
231 B

FROM alpine:latest
# 解决go 时区和https请求证书错误问题
RUN apk update \
&& apk add ca-certificates \
&& update-ca-certificates \
&& apk add tzdata
COPY ["./bin", "/app/"]
EXPOSE 9002
WORKDIR /app
CMD ["./ems"]