mirror of https://gitee.com/answerdev/answer.git
ci: update dockerfile and makefile for sqlite embed issue
This commit is contained in:
parent
f7df1d3dfd
commit
bb18db9e13
54
Dockerfile
54
Dockerfile
|
@ -6,40 +6,54 @@ COPY . /answer
|
||||||
WORKDIR /answer
|
WORKDIR /answer
|
||||||
RUN make install-ui-packages ui && mv ui/build /tmp
|
RUN make install-ui-packages ui && mv ui/build /tmp
|
||||||
|
|
||||||
FROM golang:1.18 AS golang-builder
|
# stage2 build the main binary within static resource
|
||||||
LABEL maintainer="aichy"
|
FROM golang:1.19-alpine AS golang-builder
|
||||||
|
LABEL maintainer="aichy@sf.com"
|
||||||
|
|
||||||
|
ARG GOPROXY
|
||||||
|
ENV GOPROXY ${GOPROXY:-direct}
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
ENV GOROOT /usr/local/go
|
ENV GOROOT /usr/local/go
|
||||||
ENV PACKAGE github.com/answerdev/answer
|
ENV PACKAGE github.com/answerdev/answer
|
||||||
ENV GOPROXY https://goproxy.cn,direct
|
|
||||||
ENV BUILD_DIR ${GOPATH}/src/${PACKAGE}
|
ENV BUILD_DIR ${GOPATH}/src/${PACKAGE}
|
||||||
# Build
|
|
||||||
|
ARG TAGS="sqlite sqlite_unlock_notify"
|
||||||
|
ENV TAGS "bindata timetzdata $TAGS"
|
||||||
|
ARG CGO_EXTRA_CFLAGS
|
||||||
|
|
||||||
COPY . ${BUILD_DIR}
|
COPY . ${BUILD_DIR}
|
||||||
WORKDIR ${BUILD_DIR}
|
WORKDIR ${BUILD_DIR}
|
||||||
COPY --from=node-builder /tmp/build ${BUILD_DIR}/ui/build
|
COPY --from=node-builder /tmp/build ${BUILD_DIR}/ui/build
|
||||||
RUN make clean build && \
|
RUN apk --no-cache add build-base git \
|
||||||
cp answer /usr/bin/answer && \
|
&& make clean build \
|
||||||
mkdir -p /data/upfiles && chmod 777 /data/upfiles && \
|
&& cp answer /usr/bin/answer
|
||||||
mkdir -p /data/i18n && chmod 777 /data/i18n && cp -r i18n/*.yaml /data/i18n
|
|
||||||
|
RUN mkdir -p /data/upfiles && chmod 777 /data/upfiles \
|
||||||
|
&& mkdir -p /data/i18n && cp -r i18n/*.yaml /data/i18n
|
||||||
|
|
||||||
|
# stage3 copy the binary and resource files into fresh container
|
||||||
|
FROM alpine
|
||||||
|
LABEL maintainer="maintainers@sf.com"
|
||||||
|
|
||||||
FROM debian:bullseye
|
|
||||||
ENV TZ "Asia/Shanghai"
|
ENV TZ "Asia/Shanghai"
|
||||||
RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list \
|
RUN apk update \
|
||||||
&& sed -i 's/security.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list \
|
&& apk --no-cache add \
|
||||||
&& echo "Asia/Shanghai" > /etc/timezone \
|
bash \
|
||||||
&& apt -y update \
|
ca-certificates \
|
||||||
&& apt -y upgrade \
|
curl \
|
||||||
&& apt -y install ca-certificates openssl tzdata curl netcat dumb-init \
|
dumb-init \
|
||||||
&& apt -y autoremove \
|
gettext \
|
||||||
&& mkdir -p /tmp/cache
|
openssh \
|
||||||
|
sqlite \
|
||||||
COPY --from=golang-builder /data /data
|
gnupg \
|
||||||
VOLUME /data
|
&& echo "Asia/Shanghai" > /etc/timezone
|
||||||
|
|
||||||
COPY --from=golang-builder /usr/bin/answer /usr/bin/answer
|
COPY --from=golang-builder /usr/bin/answer /usr/bin/answer
|
||||||
|
COPY --from=golang-builder /data /data
|
||||||
COPY /script/entrypoint.sh /entrypoint.sh
|
COPY /script/entrypoint.sh /entrypoint.sh
|
||||||
RUN chmod 755 /entrypoint.sh
|
RUN chmod 755 /entrypoint.sh
|
||||||
|
|
||||||
|
VOLUME /data
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ DOCKER_CMD=docker
|
||||||
|
|
||||||
#GO_ENV=CGO_ENABLED=0
|
#GO_ENV=CGO_ENABLED=0
|
||||||
Revision=$(shell git rev-parse --short HEAD)
|
Revision=$(shell git rev-parse --short HEAD)
|
||||||
GO_FLAGS=-ldflags="-X main.Version=$(VERSION) -X main.Revision=$(Revision) -X 'main.Time=`date`' -extldflags -static"
|
GO_FLAGS=-ldflags="-X main.Version=$(VERSION) -X 'main.Revision=$(Revision)' -X 'main.Time=`date`' -extldflags -static"
|
||||||
GO=$(GO_ENV) $(shell which go)
|
GO=$(GO_ENV) $(shell which go)
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in New Issue