Skip to content

Commit

Permalink
still trying to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Riley Thai committed Feb 25, 2025
1 parent 8be7a51 commit fe8fc3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ RUN git config --global credential.helper 'store --file=/root/.git-credentials'
# Install poetry and project dependencies
RUN pip install poetry && \
poetry config virtualenvs.create false && \
poetry install -E solara --no-root && \
poetry install -E solara --no-root -vvv && \
rm -rf ~/.cache

# Remove credentials after use
RUN rm /root/.git-credentials && \
git config --global --unset credential.helper

# Stage 2: Development stage for the project
FROM dep-stage as dev-stage

# Copy the main project files over and install
COPY ./ ./
RUN poetry install -E solara --only main
RUN poetry install -E solara --only main -vvv

# Remove credentials after use
RUN rm /root/.git-credentials && \
git config --global --unset credential.helper

# Create dir for socket and logs
RUN mkdir -p /tmp/webapp
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe8fc3d

Please sign in to comment.