mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
25 lines
614 B
JSON
25 lines
614 B
JSON
|
{
|
||
|
"containerDefinitions": [
|
||
|
{
|
||
|
"name": "ECSUSDSJustice40Worker",
|
||
|
"image": "osgeo/gdal:alpine-small-latest",
|
||
|
"cpu": 1024,
|
||
|
"environment": [
|
||
|
{
|
||
|
"name": "AWS_REGION",
|
||
|
"value": "${REGION}"
|
||
|
}
|
||
|
],
|
||
|
"command": [
|
||
|
"ogr2ogr",
|
||
|
"-f", "GeoJSON",
|
||
|
"-sql", "${sql}",
|
||
|
"${output}",
|
||
|
"${input}"
|
||
|
],
|
||
|
"memory": 1024,
|
||
|
"essential": true
|
||
|
}
|
||
|
],
|
||
|
"family": ""
|
||
|
}
|