From 0643af5cca4395620d61bab52513bb6d31e42d24 Mon Sep 17 00:00:00 2001 From: "Maxime Alves LIRMM@home" Date: Tue, 12 Oct 2021 18:08:07 +0200 Subject: [PATCH] [dockerfile] add gunicorn/uvicorn --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 600cc71..dd158b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM docker.io/python:3.8.12-slim-bullseye COPY . /halfapi WORKDIR /halfapi +RUN pip install gunicorn uvicorn RUN pip install . CMD gunicorn halfapi.app