feat(构建镜像): 添加构建镜像相关文件

This commit is contained in:
2020-09-22 15:38:27 +08:00
parent 5f497c91ec
commit d021217ef5
2 changed files with 25 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
# 基础镜像
FROM golang:buster
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
# 安装工具
RUN apt-get update \
&& apt-get install -y \
unzip