Skip to content

Commit

Permalink
Fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Jun 27, 2024
1 parent 7f42e0a commit ee395f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ WORKDIR /root
# Update GO
# Install GOLang
RUN apt-get update && apt-get install -y wget \
&& wget -c https://dl.google.com/go/go1.22.linux-${TARGETARCH}.tar.gz -O - | tar -xz -C /usr/local \
&& rm -rf go1.22.linux-${TARGETARCH}.tar.gz \
&& wget -c https://dl.google.com/go/go1.22.4.linux-${TARGETARCH}.tar.gz -O - | tar -xz -C /usr/local \
&& rm -rf go1.22.4.linux-${TARGETARCH}.tar.gz \
&& rm -rf /var/lib/apt/lists/*
ENV PATH="/usr/local/go/bin:${PATH}"

Expand Down

0 comments on commit ee395f8

Please sign in to comment.