From 5d1c4f0084cfa18f51944062f6fd0359c06936c0 Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 24 Jan 2024 11:36:15 +0300 Subject: [PATCH] launch-fix --- Dockerfile | 2 ++ Procfile | 1 - pyproject.toml | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 Procfile delete mode 100644 pyproject.toml diff --git a/Dockerfile b/Dockerfile index 6b66aad9..49a47577 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,3 +7,5 @@ COPY requirements.txt . RUN apt update && apt install -y git gcc curl postgresql RUN pip install -r requirements.txt COPY . . + +CMD python server.py diff --git a/Procfile b/Procfile deleted file mode 100644 index ac9d762f..00000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: python server.py diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index aa4949aa..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,2 +0,0 @@ -[tool.black] -line-length = 100