mirror of
https://github.com/xiaoqidun/goenv.git
synced 2024-11-21 23:56:45 +08:00
11 lines
174 B
Docker
11 lines
174 B
Docker
# 基础镜像
|
|
FROM golang:buster
|
|
|
|
# 作者信息
|
|
LABEL MAINTAINER="xiaoqidun@gmail.com"
|
|
|
|
# 安装工具
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
unzip
|