drone-ci-golang/Dockerfile
李寻欢 e111066fda
Some checks failed
continuous-integration/drone/push Build is failing
测试电报推送使用html模板
2020-01-07 10:58:54 +08:00

19 lines
465 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM alpine
MAINTAINER LiXunHuan(lxh@cxh.cn)
# 创建工作目录修改alpine源为中科大的源安装必要工具
RUN mkdir -p /app && sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && \
apk update && \
apk upgrade && \
apk add ca-certificates && update-ca-certificates && \
apk add --update tzdata && \
rm -rf /var/cache/apk/*
WORKDIR /app
COPY go-app ./
ENV TZ=Asia/Shanghai
EXPOSE 8080
ENTRYPOINT ./demo-app