Skip to content

Commit faefef4

Browse files
author
Jiyeon Baek
committed
add install uv
1 parent f405c3f commit faefef4

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

Dockerfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ ENV TS_NODE 10.9.2
88
ENV SWC_CORE 1.11.24
99
ENV AWS_CLI 2.27.19
1010
ENV BUILDKIT_VERSION 0.21.1
11-
ENV PIPX_VERSION 1.1.0-1
1211

1312
RUN apt-get update -y \
1413
&& apt-get install -y --no-install-recommends \
@@ -18,17 +17,12 @@ RUN apt-get update -y \
1817
wget \
1918
jq \
2019
patch \
21-
python3 \
22-
pipx=${PIPX_VERSION} \
20+
python3 \
2321
curl \
2422
unzip \
2523
git \
2624
&& apt-get clean
2725

28-
29-
# https://github.com/pypa/pipx?tab=readme-ov-file#on-linux
30-
RUN pipx ensurepath
31-
3226
# install awscli v2. see https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
3327
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWS_CLI}.zip" -o /tmp/awscliv2.zip \
3428
&& unzip /tmp/awscliv2.zip -d /tmp/ \
@@ -65,3 +59,6 @@ RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaw
6559
&& chmod a+x /usr/bin/docker-credential-ecr-login
6660

6761
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
62+
63+
# install uv
64+
RUN curl -LsSf https://astral.sh/uv/install.sh | sh

0 commit comments

Comments
 (0)