蓝眼网盘定制版
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.

28 lines
496 B

7 years ago
# use golang 1.12
FROM golang:1.12
7 years ago
# maintainer. Author's name and email.
MAINTAINER eyeblue "eyebluecn@126.com"
7 years ago
# work directory.
WORKDIR /data
# Copy this project to /data
COPY . /data
# in order to make docker stateless. Prepare a volumn
VOLUME /data/build/matter
# proxy
ENV GOPROXY=https://goproxy.io
7 years ago
# prepare the config file
RUN go build -mod=readonly \
&& cp -r /data/tank /data/build
# use 6010 as default.
EXPOSE 6010
7 years ago
# tank as execute file.
ENTRYPOINT ["/data/build/tank"]