Skip to content

Commit

Permalink
fixup! chore: add Dockerfile
Browse files Browse the repository at this point in the history
fix: add missing update to install wget
Signed-off-by: Kaan Yagci <kaan.yagci@makepad.fr>
  • Loading branch information
kaanyagci committed Mar 25, 2024
1 parent 529af01 commit 03f5796
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ARG GO_VERSION

WORKDIR /app

RUN apt-get install -y wget tar --no-install-recommends

RUN wget -q "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" && \
RUN apt-get update -y && \
apt-get install -y wget tar --no-install-recommends && \
wget -q "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" && \
tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz && \
rm ./go${GO_VERSION}.linux-amd64.tar.gz

Expand Down

0 comments on commit 03f5796

Please sign in to comment.