Files
xray_sub_server/Dockerfile
crutoboy 77341e6735
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6m5s
add dockerfile and ci/cd
2026-05-22 09:04:50 +00:00

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"]