Add docker compose + server Dockerfile and update Docker Flow #5
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 pull request includes changes to Docker configurations and build scripts to standardize the environment setup for the
kibo
project. The most important changes include renaming and modifying theDockerfile.parser
, adding a newDockerfile.server
, updating thecompose.yaml
file to include new services, and modifying the build script to use the new Dockerfiles.Dockerfile changes:
Dockerfile.parser
: Renamed fromdocker/Dockerfile
, changed the working directory to/kibo/
, and updated the command to run the parser with the correct manifest path.Dockerfile.server
: Added a new Dockerfile for the server, setting up environment variables and the working directory, and copying the necessary files.Compose file changes:
compose.yaml
: Added services forkibo-parser
andkibo-server
, specifying build contexts, Dockerfiles, and volume mappings.Build script changes:
docker/build.sh
: Updated the build script to use the new Dockerfiles forkibo-parser
andkibo-server
, and commented out the git clone commands.