chore: implement self-healing entrypoint and fix line endings
Build & Push Docker Image (Backend) / build (push) Successful in 2m8s
Build & Push Docker Image (Backend) / build (push) Successful in 2m8s
This commit is contained in:
+9
-8
@@ -35,19 +35,20 @@ RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY . .
|
||||
|
||||
# =========================
|
||||
# Collect Static Files
|
||||
# Setup Entrypoint (เพิ่มตรงนี้ครับ)
|
||||
# =========================
|
||||
RUN python manage.py collectstatic --noinput
|
||||
# แนะนำให้ใช้คำสั่งนี้เพื่อให้มั่นใจว่าสิทธิ์ไฟล์ถูกต้องใน Linux environment
|
||||
RUN chmod +x /app/entrypoint.sh
|
||||
|
||||
# =========================
|
||||
# Expose Application Port
|
||||
# Environment Variables (Optional)
|
||||
# =========================
|
||||
EXPOSE 8000
|
||||
|
||||
# =========================
|
||||
# Run Application
|
||||
# ENTRYPOINT & CMD # ENTRYPOINT จะรันสคริปต์เพื่อ Migrate ฐานข้อมูลก่อนเสมอ
|
||||
# =========================
|
||||
# =========================
|
||||
# Run Application
|
||||
# =========================
|
||||
CMD ["python", "-m", "gunicorn", "core.wsgi:application", "--bind", "0.0.0.0:8000", "--workers", "3", "--timeout", "120"]
|
||||
ENTRYPOINT ["/app/entrypoint.sh"]
|
||||
|
||||
# CMD จะถูกส่งไปเป็นพารามิเตอร์ $1 ให้กับ entrypoint.sh
|
||||
CMD ["gunicorn"]
|
||||
Reference in New Issue
Block a user