mirror of
https://github.com/docker/build-push-action.git
synced 2025-05-06 13:39:30 +02:00

This setup-only mode will setup a docker builder with the stickydisk mounted but will not run a Docker build. The use case here is to allow customers to then run their custom Tilt files or Docker commands against our builder. The other subtle change is that we only cleanup in the post step of this builder action. It is still to be seen if you can start several of these builders at the same time in a workflow but we can do that as a follow on.
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "docker-build-push",
|
|
"description": "Build and push Docker images",
|
|
"main": "src/main.ts",
|
|
"scripts": {
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
"eslint:fix": "eslint --fix .",
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/build-push-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"build",
|
|
"push"
|
|
],
|
|
"author": "Docker Inc.",
|
|
"license": "Apache-2.0",
|
|
"packageManager": "yarn@3.6.3",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@buf/blacksmith_vm-agent.connectrpc_es": "^1.6.1-20250304023716-e8d233d92eac.2",
|
|
"@connectrpc/connect": "^1.6.1",
|
|
"@connectrpc/connect-node": "^1.6.1",
|
|
"@docker/actions-toolkit": "0.37.1",
|
|
"@iarna/toml": "^2.2.5",
|
|
"axios-retry": "^4.5.0",
|
|
"execa": "^9.5.2",
|
|
"form-data": "^4.0.1",
|
|
"handlebars": "^4.7.7",
|
|
"portfinder": "^1.0.32"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.26.10",
|
|
"@babel/preset-env": "^7.26.9",
|
|
"@babel/preset-typescript": "^7.27.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.12.12",
|
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
"@typescript-eslint/parser": "^7.9.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"babel-jest": "^29.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^28.5.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "5.5.4"
|
|
}
|
|
}
|