You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
278 B

FROM golang:1.19-alpine
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn
RUN mkdir -p /var/texas/data/
WORKDIR /var/texas
COPY target/texas /var/texas/
COPY target/config.toml /var/texas/data/
COPY /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
CMD ["/var/texas/texas"]