From b2fc8a54f353524f98322b50d5ed06154212d4a9 Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Sun, 22 Nov 2020 08:48:29 +0200 Subject: Create Dockerfile for project --- Dockerfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e463544 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +FROM python:3.9-slim + +# Allow service to handle stops gracefully +STOPSIGNAL SIGQUIT + +# Install C compiler and make +RUN apt-get update && \ + apt-get install -y gcc make && \ + apt-get clean && rm -rf /var/lib/apt/lists/* + +# Install Poetry +RUN pip install poetry + +# Copy dependencies-related files +COPY poetry.lock . +COPY pyproject.toml . + +# Install dependencies +RUN poetry config virtualenvs.create false +RUN poetry install --no-dev + +# Copy all files to container +WORKDIR /app +COPY . . + +# Start the server with uvicorn +CMD ["gunicorn", "-w", "2", "-b", "0.0.0.0:8000", "-k", "uvicorn.workers.UvicornWorker", "backend:app"] -- cgit v1.2.3