Skip to content

Commit

Permalink
verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanbhosale committed Sep 17, 2024
1 parent 441c002 commit 2e95d0b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,17 @@ COPY . /app
# Copy the pyproject.toml file
COPY pyproject.toml .

# Install system dependencies needed for building Python packages
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
gcc \
python3-dev

# Upgrade pip and setuptools
RUN pip install --upgrade pip setuptools wheel

# Install the quartz_solar_forecast package in editable mode
RUN pip install -e .
RUN pip install -e . --verbose

# Expose port 8000 and 8501 to the outside world
EXPOSE 8000 8501
Expand Down

0 comments on commit 2e95d0b

Please sign in to comment.