Something went wrong on our end
-
David Hoese authoredDavid Hoese authored
Dockerfile 209 B
FROM python:3-alpine as base
FROM base as builder
RUN pip install --prefix=/install pika
FROM base
COPY --from=builder /install /usr/local
COPY declare_exchange.py .
CMD ["python", "declare_exchange.py"]