Skip to content

Commit 4b617d3

Browse files
committed
feat: use "pip3" instead of "pip", updated description
1 parent ad30c76 commit 4b617d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.10-alpine
44
# Label your image with metadata
55
LABEL maintainer="[email protected]"
66
LABEL org.opencontainers.image.source https://github.com/blib-la/runpod-worker-helloworld
7-
LABEL org.opencontainers.image.description "Getting started with a serverless endpoint on RunPod by creating a custom workerUI"
7+
LABEL org.opencontainers.image.description "Getting started with a serverless endpoint on RunPod by creating a custom worker"
88

99
# Define your working directory
1010
WORKDIR /
@@ -14,7 +14,7 @@ COPY requirements.txt ./
1414

1515
# Intall dependencies
1616
RUN apk add --no-cache bash gcc libc-dev libffi-dev && \
17-
pip install --no-cache-dir -r requirements.txt
17+
pip3 install --no-cache-dir -r requirements.txt
1818

1919
# Copy your source code into the image
2020
COPY src/ .

0 commit comments

Comments
 (0)