mirror of
https://0xacab.org/johnxina/rat.git
synced 2024-12-23 04:59:09 +00:00
Update Dockerfile
This commit is contained in:
parent
28f6d09cbd
commit
e41ee33d9c
60
Dockerfile
60
Dockerfile
@ -1,32 +1,28 @@
|
||||
# Use the official Python image as the base image
|
||||
FROM python:3.11-slim
|
||||
|
||||
|
||||
# Install the patch utility
|
||||
RUN apt-get update && apt-get install -y patch
|
||||
|
||||
|
||||
# Set the working directory to /app
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
# Copy the local requirements.txt file to the container
|
||||
COPY requirements.txt .
|
||||
|
||||
|
||||
# Install the Python dependencies
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
# Copy the aiotieba-handle-exception-expose.patch file to the container
|
||||
COPY aiotieba-handle-exception-expose.patch .
|
||||
|
||||
|
||||
# Expose port 8886
|
||||
EXPOSE 8886
|
||||
|
||||
|
||||
# Copy the local code to the container
|
||||
COPY . .
|
||||
|
||||
# Run the Python script with Uvicorn, binding to all available network interfaces
|
||||
CMD ["gunicorn", "app:proxified", "--max-requests", "50", "--worker-class", "uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:8886"]
|
||||
# Use the official Python image as the base image
|
||||
FROM python:3.11-slim
|
||||
|
||||
|
||||
# Install the patch utility
|
||||
RUN apt-get update && apt-get install -y patch
|
||||
|
||||
|
||||
# Set the working directory to /app
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
# Copy the local requirements.txt file to the container
|
||||
COPY requirements.txt .
|
||||
|
||||
|
||||
# Install the Python dependencies
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
# Expose port 8886
|
||||
EXPOSE 8886
|
||||
|
||||
|
||||
# Copy the local code to the container
|
||||
COPY . .
|
||||
|
||||
# Run the Python script with Uvicorn, binding to all available network interfaces
|
||||
CMD ["gunicorn", "app:proxified", "--max-requests", "50", "--worker-class", "uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:8886"]
|
||||
|
Loading…
Reference in New Issue
Block a user