-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
80 lines (68 loc) · 1.78 KB
/
Copy pathDockerfile
File metadata and controls
80 lines (68 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#FROM python:3.14-slim
#
#ENV PYTHONDONTWRITEBYTECODE=1
#ENV PYTHONUNBUFFERED=1
#
#WORKDIR /app
#
#RUN apt-get update\
# && apt-get install -y --no-install-recommends \
#--no-install-recommends\
# build-essential\
# libpq-dev\
# && rm -rf/var/lib/apt/lists/*
#
#COPY pyproject.toml uv.lock./
#
#RUN pip install --no-cache-dir uv \
# && uv pip install --system --no-cache -r pyproject.toml \
# && pip install --no-cache-dir gunicorn
#
#COPY . .
#
#RUN mkdir -p/app/staticfiles
#
#EXPOSE 8000
#
#CMD ["sh", "-c", "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn QuickPay.wsgi:application --bind 0.0.0.0:8000"]
#
#FROM python:3.14-slim
#
#ENV PYTHONDONTWRITEBYTECODE=1
#ENV PYTHONUNBUFFERED=1
#
#WORKDIR /app
#
#RUN apt-get update && apt-get install -y --no-install-recommends \
# build-essential \
# libpq-dev \
# && rm -rf /var/lib/apt/lists/*
#
#COPY pyproject.toml uv.lock ./
#
#RUN pip install --no-cache-dir uv \
# && uv pip install --system . \
# && pip install --no-cache-dir gunicorn
#
#COPY . .
#
#RUN mkdir -p /app/staticfiles
#
#EXPOSE 8000
#
#CMD ["sh", "-c", "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn QuickPay.wsgi:application --bind 0.0.0.0:8000"]
FROM python:3.14-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt \
&& pip install --no-cache-dir gunicorn
COPY . .
RUN mkdir -p /app/staticfiles
EXPOSE 8000
CMD ["sh", "-c", "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn QuickPay.wsgi:application --bind 0.0.0.0:8000"]