Update Dockerfile
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -1,8 +1,7 @@
|
|||||||
# Use an official Python runtime as a base image
|
|
||||||
FROM python:3.12-slim
|
FROM python:3.12-slim
|
||||||
|
|
||||||
# Install build dependencies and supervisor
|
# Install build dependencies
|
||||||
RUN apt-get update -y && apt-get install -y gcc python3-dev supervisor
|
RUN apt-get update -y && apt-get install -y gcc python3-dev
|
||||||
|
|
||||||
# Set the working directory to /app
|
# Set the working directory to /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@@ -13,8 +12,5 @@ COPY . /app
|
|||||||
# Install any needed packages specified in requirements.txt
|
# Install any needed packages specified in requirements.txt
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
# Copy the supervisor configuration file
|
# Run main.py when the container launches
|
||||||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
CMD ["python", "-u", "main.py"]
|
||||||
|
|
||||||
# Run supervisor to manage both processes main.py and webapp.py
|
|
||||||
CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|
|
||||||
Reference in New Issue
Block a user