Skip to content

Commit

Permalink
Fix the error of missing curl in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kallydev committed Jul 22, 2020
1 parent 34d6818 commit 9b09c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -2,7 +2,7 @@
# STEP 1 build executable binary
############################
FROM golang:alpine AS builder
RUN apk update && apk add --no-cache git bash wget
RUN apk update && apk add --no-cache git bash wget curl
WORKDIR /go/src/v2ray.com/core
RUN git clone --progress https://github.com/v2fly/v2ray-core.git . && \
bash ./release/user-package.sh nosource noconf codename=$(git describe --tags) buildname=docker-fly abpathtgz=/tmp/v2ray.tgz
Expand Down

0 comments on commit 9b09c83

Please sign in to comment.