allure-docs icon indicating copy to clipboard operation
allure-docs copied to clipboard

Issue Building Dockerfile

Open EliCDavis opened this issue 5 years ago • 1 comments

image

Upon cloning your repository I tried to build a docker image using the command

docker build --tag=allure-docs .

and got the following error:

Sending build context to Docker daemon  13.55MB
Step 1/3 : FROM nginx:1.12-alpine
1.12-alpine: Pulling from library/nginx
550fe1bea624: Pull complete
af3988949040: Pull complete
d6642feac728: Pull complete
c20f0a205eaa: Pull complete
Digest: sha256:db5acc22920799fe387a903437eb89387607e5b3f63cf0f4472ac182d7bad644
Status: Downloaded newer image for nginx:1.12-alpine
 ---> 24ed1c575f81
Step 2/3 : COPY build/docs/html5 /usr/share/nginx/html
COPY failed: stat /var/lib/docker/tmp/docker-builder908779930/build/docs/html5: no such file or directory

EliCDavis avatar Feb 03 '19 03:02 EliCDavis

This dockerfile is only packaging the html code, but it doesn't build it itself.

Run first ./gradlew clean build to create the docs. Then your docker command will succeed

Note: You need a JDK installed locally before you run the gradle command

kostis-codefresh avatar Apr 08 '19 10:04 kostis-codefresh