diff --git a/backend/Dockerfile b/backend/Dockerfile index 33c9113..843c019 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,22 +1,9 @@ -FROM python:3.9-bullseye - -ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - libc6 \ - libgcc1 \ - libgssapi-krb5-2 \ - libicu67 \ - libssl1.1 \ - libstdc++6 \ - zlib1g +FROM python:3.9 WORKDIR /app COPY requirements.txt . - RUN pip install -r requirements.txt --no-cache-dir COPY . . - -RUN chmod a+x commands/app.sh +CMD ["gunicorn", "--bind", "0.0.0.0:9000", "backend.wsgi"]