sfun commited on
Commit
a1b6a11
1 Parent(s): 4443eba

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -4,8 +4,9 @@ FROM ghcr.io/yufeikang/raycast_api_proxy:main AS builder
4
  # run stage
5
  FROM caddy:alpine AS runner
6
 
7
- RUN apk add --no-cache --break-system-packages python3 py3-pip && pip3 install grpcio
8
-
 
9
  # retrieve packages from build stage
10
  ENV PYTHONPATH=/project/pkgs
11
 
 
4
  # run stage
5
  FROM caddy:alpine AS runner
6
 
7
+ RUN apk add --no-cache python3 py3-pip && \
8
+ pip3 install grpcio
9
+
10
  # retrieve packages from build stage
11
  ENV PYTHONPATH=/project/pkgs
12