Ubuntu配置golang gin的环境以及相应的Dockerfile

本文档详细介绍了如何在Ubuntu操作系统中配置Golang环境,并重点讲解了如何为Gin应用编写Dockerfile,以便利用Docker进行高效部署。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

apt-get update -y
apt-get install -y wget 
wget https://dl.google.com/go/go1.12.5.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.12.5.linux-amd64.tar.gz 
export PATH=$PATH:/usr/local/go/bin
apt-get install -y vim
apt-get install -y git
apt-get install -y curl
export GOPATH=/root/go 
mkdir -p $GOPATH/src/golang.org/x/
cd $GOPATH/src/golang.org/x/
git clone https://github.com/golang/sys.git
git clone https://github.com/golang/text.git
git clone https://github.com/golang/crypto.git
git clone https://github.com/golang/net.git

mkdir -p $GOPATH/src/github.com/gin-gonic/
cd $GOPATH/src/github.com/gin-gonic/
git clone https://github.com/gin-gonic/gin.git
go get -u github.com/gin-gonic/gin

Dockerfile

FROM ubuntu:16.04
RUN apt-get update -y
RUN apt-get install -y wget 
RUN wget https://dl.google.com/go/go1.12.5.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.12.5.linux-amd64.tar.gz 
ENV PATH $PATH:/usr/local/go/bin
RUN apt-get install -y vim
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值