File size: 374 Bytes
b565092
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10-alpine AS builder
COPY ./requirements.txt /home
RUN pip install --no-cache-dir -r /home/requirements.txt

FROM python:3.10-alpine
EXPOSE 8080
WORKDIR /home
COPY --from=builder /usr/local/lib/python3.10/site-packages /usr/local/lib/python3.10/site-packages
COPY ./setup.sh /home
RUN apk add --no-cache git \
    && rm -rf /tmp/*
ENTRYPOINT ["/home/setup.sh"]