* 2021/11/01/22 Github_Action * Update docker.yml Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
43 lines
1.3 KiB
Docker
43 lines
1.3 KiB
Docker
FROM golang:alpine as builder
|
|
|
|
ENV GO111MODULE=on
|
|
|
|
ENV GOPROXY=https://goproxy.cn,direct
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
|
RUN apk add gcc g++
|
|
RUN go env;ARCH="$(arch)";case "$ARCH" in 'x86_64') export ARCH='amd64';echo $ARCH;; 'aarch64') export ARCH='arm64';echo $ARCH;; 'i386') export ARCH='i386';echo $ARCH;; esac;CGO_ENABLED=1 GOOS=linux GOARCH=$ARCH go build -a -ldflags '-linkmode external -extldflags "-static"' -o next-terminal main.go
|
|
|
|
FROM alpine:latest
|
|
|
|
LABEL MAINTAINER="helloworld1024@foxmail.com"
|
|
|
|
ENV TZ Asia/Shanghai
|
|
ENV DB sqlite
|
|
ENV CONTAINER "true"
|
|
ENV SQLITE_FILE './data/sqlite/next-terminal.db'
|
|
ENV SERVER_PORT 8088
|
|
ENV SERVER_ADDR 0.0.0.0:$SERVER_PORT
|
|
ENV SSHD_PORT 8089
|
|
ENV SSHD_ADDR 0.0.0.0:$SSHD_PORT
|
|
ENV TIME_ZONE=Asia/Shanghai
|
|
RUN ln -snf /usr/share/zoneinfo/$TIME_ZONE /etc/localtime && echo $TIME_ZONE > /etc/timezone
|
|
|
|
WORKDIR /usr/local/next-terminal
|
|
RUN touch config.yml
|
|
|
|
COPY --from=builder /app/next-terminal ./
|
|
COPY --from=builder /app/LICENSE ./
|
|
COPY --from=builder /app/web/build ./web/build
|
|
|
|
EXPOSE $SERVER_PORT $SSHD_PORT
|
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
|
|
RUN apk add tzdata
|
|
RUN cp /usr/share/zoneinfo/${TZ} /etc/localtime
|
|
RUN echo ${TZ} > /etc/timezone
|
|
ENTRYPOINT ./next-terminal |