Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6m5s
12 lines
219 B
Docker
12 lines
219 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt gunicorn==23.0.*
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 2096
|
|
|
|
CMD ["gunicorn", "--workers=4", "--bind=0.0.0.0:2096", "wsgi:app"] |