Skip to content

Commit

Permalink
added wget
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebono1 authored May 29, 2023
1 parent c1e45b1 commit 64e496c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ FROM ghcr.io/hiway-media/deb-imagemagick-libvips:latest

ENV GOLANG_VERSION 1.19.9

RUN url='https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz'
ENV url='https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz'

RUN wget url

RUN apt-get update
RUN apt-get install wget

RUN wget ${url}

RUN tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz

Expand Down

0 comments on commit 64e496c

Please sign in to comment.