Skip to content

Commit cb96bf6

Browse files
authored
feat(cli): move to ghcr for osgeo/gdal (#2790)
1 parent 17471e1 commit cb96bf6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osgeo/gdal:ubuntu-small-3.6.1
1+
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.7.0
22

33
ENV NODE_ENV=PRODUCTION
44

packages/cli/src/gdal/gdal.docker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export class GdalDocker extends GdalCommand {
5050

5151
/** this could contain sensitive info like AWS access keys */
5252
private async getDockerArgs(): Promise<string[]> {
53-
const DOCKER_CONTAINER = Env.get(Env.Gdal.DockerContainer) ?? 'osgeo/gdal';
54-
const DOCKER_CONTAINER_TAG = Env.get(Env.Gdal.DockerContainerTag) ?? 'ubuntu-small-3.6.1';
53+
const DOCKER_CONTAINER = Env.get(Env.Gdal.DockerContainer) ?? 'ghcr.io/osgeo/gdal';
54+
const DOCKER_CONTAINER_TAG = Env.get(Env.Gdal.DockerContainerTag) ?? 'ubuntu-small-3.7.0';
5555
const userInfo = os.userInfo();
5656
const credentials = await this.getCredentials();
5757
return [

0 commit comments

Comments
 (0)