Skip to content

Commit

Permalink
fix: deal
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Pomar committed Apr 29, 2024
1 parent e18ec06 commit 6395538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deploy/runtime-detect/runtime_detection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const runtime_detection = async (
const has = R.curry(has_any_of_files);
const strategy = R.cond<[string], StrategyFn>([
[has(["package.json"]), R.always(strategy_nodejs)],
[has(["requirements.txt"]), R.always(strategy_python)],
// [has(["requirements.txt"]), R.always(strategy_python)],
[has(["Dockerfile"]), R.always(strategy_docker)],
])(workdir);

Expand Down

0 comments on commit 6395538

Please sign in to comment.