dockerfiles/alpine-runner/Dockerfile

9 lines
255 B
Docker

FROM alpine:3.13.6
LABEL org.opencontainers.image.authors="lxh@cxh.cn"
# 安装工具
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && \
apk add --update --no-cache tzdata
ENV TZ=Asia/Shanghai \
GIN_MODE=release