Docker-based build process #34
                
     Merged
            
            
          
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
This PR automates the management of the environment required for building the website using Docker. It is an alternative to the work started by @Tieske in #12 with the following advantages:
Dockerfilethat doesn't require a dedicated entrypoint script.Supersedes #12 .
The only thing I have not been able to test so far is the CI workflow. Docker is installed by default in the Ubuntu 22.04 runner so this should work OOTB.EDIT: seems to work fine now that this PR is open and CI is running.@schaze does this allow you to test build the website locally? It should be as simple as running
./build.sh(assuming you have Docker installed)..