Skip to content

Commit

Permalink
Update the default gdal version to 3.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentao-Kuang committed Nov 1, 2023
1 parent d71c3e9 commit c214904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/gdal/gdal.docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class GdalDocker extends GdalCommand {
/** this could contain sensitive info like AWS access keys */
private async getDockerArgs(): Promise<string[]> {
const DOCKER_CONTAINER = Env.get(Env.Gdal.DockerContainer) ?? 'ghcr.io/osgeo/gdal';
const DOCKER_CONTAINER_TAG = Env.get(Env.Gdal.DockerContainerTag) ?? 'ubuntu-small-3.7.0';
const DOCKER_CONTAINER_TAG = Env.get(Env.Gdal.DockerContainerTag) ?? 'ubuntu-small-3.7.2';
const userInfo = os.userInfo();
const credentials = await this.getCredentials();
return [
Expand Down
2 changes: 1 addition & 1 deletion packages/cogify/src/cogify/gdal.runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface GdalCommand {

function getDockerContainer(): string {
const containerPath = process.env['GDAL_DOCKER_CONTAINER'] ?? 'ghcr.io/osgeo/gdal';
const tag = process.env['GDAL_DOCKER_CONTAINER_TAG'] ?? 'ubuntu-small-3.7.0';
const tag = process.env['GDAL_DOCKER_CONTAINER_TAG'] ?? 'ubuntu-small-3.7.2';
return `${containerPath}:${tag}`;
}

Expand Down

0 comments on commit c214904

Please sign in to comment.