feedless icon indicating copy to clipboard operation
feedless copied to clipboard

Image building

Open yellowsoar opened this issue 1 year ago • 0 comments

Briefing

I am trying to build the image by trial and error in my forked branch. https://github.com/yellowsoar/feedless/tree/build_image

Current progress

Still trying to build the image.

The command

find . -type d -ipath "*node_modules*" -exec ls -d "{}" \; -exec rm -rf {} \;
export DOCKER_DEFAULT_PLATFORM=linux/amd64 \
	&& docker build \
    --file Dockerfile.build \
    --tag=feedless:build-7.6.3-jdk17 \
		. \
	&& docker run \
    --name build_feedless \
    --rm \
    --user root \
    --volume "$PWD":/home/gradle/project \
    --workdir /home/gradle/project \
		feedless:build-7.6.3-jdk17 \
		gradle build \
    --rerun-tasks \
    --scan \
    -i

Contribute

Please help me to make it work.

yellowsoar avatar Jan 15 '24 03:01 yellowsoar