The Docker file in the root directory mentions some directories and files that are not exists in the master branch, like the docker/ directory and its content.
|
COPY docker/setup.sh /setup.sh |
|
COPY docker/start.sh /start.sh |
|
RUN chmod +x /setup.sh /start.sh \ |
|
&& sync \ |
|
&& /setup.sh |
|
|
|
COPY docker/attributemaps /opt/satosa/attributemaps |
|
|
|
VOLUME /opt/satosa/etc |
|
CMD ["/start.sh"] |
I searched other branches and found that this directory and its content were there (branches from v4.0.0 to v6.1.0). but it was removed from the recent branches.

I am planning to build the image on my own, but I am wondering if we could use the directory and its content from previous branches or remove the corresponding lines from the Dockerfile?
Thanks
The Docker file in the root directory mentions some directories and files that are not exists in the
masterbranch, like thedocker/directory and its content.SATOSA/Dockerfile
Lines 16 to 25 in f519bc6
I searched other branches and found that this directory and its content were there (branches from v4.0.0 to v6.1.0). but it was removed from the recent branches.
I am planning to build the image on my own, but I am wondering if we could use the directory and its content from previous branches or remove the corresponding lines from the Dockerfile?
Thanks