File size: 737 Bytes
2b54096
5c97f85
2b54096
5c97f85
 
 
07a8bc0
5c97f85
 
 
 
c5a5055
5c97f85
 
c5a5055
5c97f85
c5a5055
2b54096
 
b51d461
c22696c
b51d461
 
5c97f85
2b54096
 
c22696c
2b54096
5c97f85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# build stage
FROM python:3.10 AS builder

# install PDM
RUN pip install -U pip setuptools wheel
RUN pip install pdm

# install dependencies and project into the local packages directory
WORKDIR /project
RUN git clone https://github.com/yufeikang/raycast_api_proxy.git .
RUN mkdir __pypackages__ && pdm install --prod --no-lock --no-editable

# run stage
FROM python:3.10-slim

WORKDIR /project

# retrieve packages from build stage
ENV PYTHONPATH=/project/pkgs

RUN chmod 777 -R /project
RUN mkdir -p ./sync && chmod 777 -R ./sync

COPY --from=builder /project/__pypackages__/3.10/lib /project/pkgs
COPY --from=builder /project/app /project/app

EXPOSE 3000

CMD ["sh", "-c", "python -m uvicorn app.main:app --host 0.0.0.0 --port 3000"]