Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChocoMeow committed Nov 22, 2024
1 parent 533cb7a commit 20dfa42
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Use an official Python runtime as a base image
FROM python:3.12-slim

# Install build dependencies and supervisor
RUN apt-get update -y && apt-get install -y gcc python3-dev supervisor
# Install build dependencies
RUN apt-get update -y && apt-get install -y gcc python3-dev

# Set the working directory to /app
WORKDIR /app
Expand All @@ -13,8 +12,5 @@ COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy the supervisor configuration file
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf

# Run supervisor to manage both processes main.py and webapp.py
CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
# Run main.py when the container launches
CMD ["python", "-u", "main.py"]

0 comments on commit 20dfa42

Please sign in to comment.