first commit
commit
0bb7134be9
@ -0,0 +1,8 @@
|
||||
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
|
@ -0,0 +1,13 @@
|
||||
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 \
|
||||
libgcc libstdc++ libx11 glib libxrender libxext libintl \
|
||||
ttf-dejavu ttf-droid ttf-freefont ttf-liberation ttf-ubuntu-font-family
|
||||
|
||||
COPY --from=madnight/alpine-wkhtmltopdf-builder:0.12.5-alpine3.10-606718795 \
|
||||
/bin/wkhtmltopdf /bin/wkhtmltopdf
|
||||
COPY shs.otf /usr/share/fonts/
|
||||
ENV TZ=Asia/Shanghai
|
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
FROM golang:1.17-alpine
|
||||
RUN apk --no-cache add gcc musl-dev git mercurial
|
||||
COPY --from=golangci/golangci-lint:latest-alpine /usr/bin/golangci-lint /usr/bin/
|
Loading…
Reference in New Issue