direct to main for docker and logging fix
This commit is contained in:
@@ -15,17 +15,17 @@ WORKDIR /app
|
||||
|
||||
# Install Python dependencies
|
||||
COPY requirements.txt .
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy application files
|
||||
COPY . /app
|
||||
|
||||
# Make start.sh executable
|
||||
RUN chmod +x start.sh
|
||||
COPY start.sh .
|
||||
RUN chmod +x ./start.sh
|
||||
|
||||
# Expose the port the app runs on
|
||||
EXPOSE 1986
|
||||
|
||||
# Specify the entrypoint script
|
||||
ENTRYPOINT ["./start.sh"]
|
||||
ENTRYPOINT ["/app/start.sh"]
|
||||
|
||||
Reference in New Issue
Block a user