Skip to content

Commit

Permalink
codacy: specify git version
Browse files Browse the repository at this point in the history
  • Loading branch information
phanhongan committed Nov 7, 2024
1 parent 81ebd04 commit ca6a848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/llamarine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM python:3.12-slim
WORKDIR /app

# Install git and any other system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends git=1:2.39.5-0+deb12u1 && rm -rf /var/lib/apt/lists/*

# Copy the requirements file and install dependencies
COPY requirements.txt /app/
Expand All @@ -14,7 +14,7 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . /app

# Expose port 8501 (default Streamlit port)
# Expose Streamlit port
EXPOSE 8501

# Run the Streamlit app
Expand Down

0 comments on commit ca6a848

Please sign in to comment.