Re: Dub fails to run inside a docker container on MacBook

2021-12-02 Thread russhy via Digitalmars-d-learn
The first thing i'd check: - make sure you have curl installed on your docker image - make sure you link with the curl library (since you are using dub) That's on the notes: https://dlang.org/phobos/std_net_curl.html

Dub fails to run inside a docker container on MacBook

2021-12-02 Thread tastyminerals via Digitalmars-d-learn
I am trying to create a Docker image where I can build my dub project. Here is a simple Dockerfile. ``` FROM ubuntu as build RUN apt-get update \ && apt-get install --no-install-recommends -y -q locales build-essential apt-transport-https ca-certificates dub\ && apt-get clean \ &&