Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forego no longer available at cited location #6

Open
grahamsw opened this issue May 30, 2022 · 3 comments
Open

forego no longer available at cited location #6

grahamsw opened this issue May 30, 2022 · 3 comments

Comments

@grahamsw
Copy link

This no longer builds because forego is no longer available at https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-linux-amd64.tgz

My docker & linux knowledge are minimal so I can't fix this. (did the obvious search for a new location, tried removing references to forego - since I have no idea what it does...) This project did exactly what I needed, and I'm extremely grateful for you sharing it, but right now I can't get it to work.

@jildertviet
Copy link

Hi,
I encountered the same problem, and managed to find a workaround.
Probably not the best way, so I won't make a pull request.

I've removed

sc_radio/Dockerfile

Lines 14 to 18 in d40238b

RUN curl -o forego.tgz https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-linux-amd64.tgz && \
tar xvf forego.tgz && \
rm forego.tgz && \
mv forego /usr/bin/forego && \
chmod +x /usr/bin/forego

And changed it to:

RUN apt-get install golang-go -y
RUN apt-get install git -y

RUN go get -u github.com/ddollar/forego && \
	ln -s /root/go/bin/forego /usr/bin/forego 

Now the example is running on localhost.

@drcode
Copy link

drcode commented Feb 23, 2023

Thank you @jildertviet for this fix!

Also, if anyone else is still having a problem, try adding a delay to sclang in the Procfile by changing the line to sclang: bash -c "sleep 1 && xvfb-run -a sclang /radio.sc"

@mrtnmgs
Copy link

mrtnmgs commented Nov 3, 2023

Thanks a lot @jildertviet !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants