Skip to content

Commit 00317e2

Browse files
authored
GHAction: +wget (#57)
1 parent 18dc611 commit 00317e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/push-files/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM ubuntu:18.04
33

44
# Install GitHub CLI
55
RUN apt-get update && \
6-
apt-get install -y --no-install-recommends git
6+
apt-get install -y --no-install-recommends git wget
77
RUN mkdir /ghcli && \
88
cd /ghcli && \
9-
wget https://github.com/cli/cli/releases/download/v1.0.0/gh_1.0.0_linux_386.tar.gz -O ghcli.tar.gz && \
9+
wget https://github.com/cli/cli/releases/download/v1.0.0/gh_1.0.0_linux_386.tar.gz -O ghcli.tar.gz --no-check-certificate && \
1010
tar --strip-components=1 -xf ghcli.tar.gz
1111

1212
# Copies your code file from your action repository to the filesystem path `/` of the container

0 commit comments

Comments
 (0)