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
256 B

FROM ubuntu:22.10
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn
RUN mkdir -p /var/texas/data/
WORKDIR /var/texas
COPY target/texas /var/texas/
COPY target/data/config.toml /var/texas/data/
COPY target/data/localtime /etc/localtime
CMD ["./texas"]