Skip to content

Commit

Permalink
switched from pip to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
denisov-vlad committed Jul 24, 2024
1 parent dd2f7b2 commit f2c5908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simple_snowplow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM python:3.12-alpine3.20 as builder

RUN apk update
RUN apk add g++
RUN python -m pip install --upgrade pip setuptools wheel
RUN python -m pip install uv

COPY ./requirements.txt /app/requirements.txt
RUN python -m pip install -r /app/requirements.txt
RUN python -m uv pip install -r /app/requirements.txt


FROM python:3.12-alpine3.20
Expand Down

0 comments on commit f2c5908

Please sign in to comment.