dockerfiles/alpine-runner/Dockerfile

9 lines
255 B
Docker
Raw Permalink Normal View History

2021-10-26 13:49:14 +08:00
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
2021-11-09 12:07:22 +08:00
ENV TZ=Asia/Shanghai \
GIN_MODE=release