You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
270 B

FROM python:3-slim AS builder
WORKDIR /app
RUN pip3 install --no-cache-dir pyyaml --target=.
ADD ./main.py .
FROM gcr.io/distroless/python3-debian12
WORKDIR /app
COPY --from=builder /app /app
ENV PYTHONPATH=/app
ENTRYPOINT ["/usr/bin/python3", "-u", "/app/main.py"]