direct to main for docker and logging fix

This commit is contained in:
ForeverPyrite
2024-12-10 23:52:01 -05:00
parent deee193a43
commit 48004df115
6 changed files with 21 additions and 14 deletions

View File

@@ -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"]