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

3 years ago
  1. FROM alpine:latest
  2. # 解决go 时区和https请求证书错误问题
  3. RUN apk update \
  4. && apk add ca-certificates \
  5. && update-ca-certificates \
  6. && apk add tzdata
  7. COPY ["./bin", "/app/"]
  8. EXPOSE 9002
  9. WORKDIR /app
  10. CMD ["./ems"]