We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfb7aa commit e4df29fCopy full SHA for e4df29f
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.11-slim AS builder
+FROM python:3.13-slim AS builder
2
3
ARG linode_cli_version
4
@@ -15,11 +15,11 @@ RUN make requirements
15
16
RUN LINODE_CLI_VERSION=$linode_cli_version GITHUB_TOKEN=$github_token make build
17
18
-FROM python:3.11-slim
+FROM python:3.13-slim
19
20
COPY --from=builder /src/dist /dist
21
22
-RUN pip3 install /dist/*.whl boto3
+RUN pip3 install --no-cache-dir /dist/*.whl boto3
23
24
RUN useradd -ms /bin/bash cli
25
USER cli:cli
0 commit comments