diff --git a/Dockerfile b/Dockerfile index 19df232..6bdc6f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,5 @@ WORKDIR /var/www/html COPY ./app/ . # Download large point clouds from the internet -RUN wget https://belvederebucket.fra1.cdn.digitaloceanspaces.com/potree/pointclouds/2009_all/octree.bin /var/www/html/potree/assets/pointclouds/2009_all/octree.bin \ No newline at end of file +RUN wget https://belvederebucket.fra1.cdn.digitaloceanspaces.com/potree/pointclouds/2009_all/octree.bin +RUN mv octree.bin /var/www/html/potree/assets/pointclouds/2009_all/ diff --git a/docker-compose.yml b/docker-compose.yml index d41c2c7..20133ea 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,4 +9,4 @@ services: volumes: # Mount the local directory to /var/www/html in the container - ./app:/var/www/html ports: # Map port on the host to port on the container - - 80:80 + - 80:80 \ No newline at end of file