dispatch: docker build fails
Am trying to docker build or executing /dispatch-docker/install.sh on a Mac under Ubuntu 20.04. Unfortunately the process fails with the following output.
Step 14/44 : RUN set -x && wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini" && wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini.asc" && gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini && rm /usr/local/bin/tini.asc && chmod +x /usr/local/bin/tini
---> Using cache
---> ffdcf0d5d43e
Step 15/44 : COPY .nvmrc /usr/src/dispatch/
COPY failed: stat /var/lib/docker/tmp/docker-builder708155561/.nvmrc: no such file or directory
What am I doing wrong? Any tips or ideas? Thx in advance
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Reactions: 1
- Comments: 15 (5 by maintainers)
@jwillme While I understand your frustration, please keep in mind that open-sourcing projects is not part of our normal day jobs and is typically something we try to do to give back to the community.
That being said the error you’re running into was fixed in develop before release but had not yet been merged to master. It now has been.
@jwillmer I’m working on cleaning up both the Docker build and the invocations in the dispatch-docker project. I don’t think the build actually needs the .env file since it’s supposed to be supplied at runtime in the Docker Compose project. So here’s something that unblocks the build but there are a few other related issues I’m still working on
https://github.com/TheDahv/dispatch/commit/db0fbda11f5cb51000ef66b24a9bd27fe1ad32d2
It is still not working for me. Did someone get it to work?