File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM python:3.10-alpine
4
4
# Label your image with metadata
5
5
LABEL maintainer=
"[email protected] "
6
6
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 "
8
8
9
9
# Define your working directory
10
10
WORKDIR /
@@ -14,7 +14,7 @@ COPY requirements.txt ./
14
14
15
15
# Intall dependencies
16
16
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
18
18
19
19
# Copy your source code into the image
20
20
COPY src/ .
You can’t perform that action at this time.
0 commit comments