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.
|
FROM golang:1.13
|
|
|
|
LABEL maintainer="llitfkitfk@gmail.com,chenjiandongx@qq.com"
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install net-tools -y
|
|
|
|
COPY . .
|
|
RUN ./control build docker
|
|
RUN mv /app/bin/* /usr/local/bin
|