Skip to content

Commit

Permalink
Fixes dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
catusf authored Feb 1, 2025
1 parent e20ddbf commit 8952dfa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ RUN apt-get update && apt-get install -y \
COPY requirements.txt .
COPY pyproject.toml .
#RUN python -m pip install -r requirements.txt
RUN pip install uv && uv sync && source .venv/bin/activate

COPY --from=ghcr.io/astral-sh/uv:latest/uv/uvx/bin/

RUN uv sync && source .venv/bin/activate

WORKDIR /app
COPY . /app
COPY . /app`

# Creates a non-root user with an explicit UID and adds permission to access the /app folder
# For more info, please refer to https://aka.ms/vscode-docker-python-configure-containers
Expand Down

0 comments on commit 8952dfa

Please sign in to comment.