Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update oss.mdx to add support for the building own image #616

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions apps/www/docs/product/resources/development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,19 @@ exec: Execute command in docker dev environment.
./bin/docker-env exec 'python -m unittest discover -v -f modules/connectors/dhl_express/tests'
```

### Build your own deployment(image) for specific carrier extensions

If you need to build your own deployment for specific carrier extensions, you can follow the steps below.

- Update the source.requirements.txt file with the carrier extensions you need, similar to requirements.sdk.dev.txt.
- Build the docker image with the following command:

```terminal title="Terminal"
./bin/build-server-image-from-source <tag>
```

- Update the docker-compose.yml file to use the new image you just built.

:::

## Troubleshooting
Expand Down