mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-29 10:45:17 +00:00
14 lines
237 B
Docker
14 lines
237 B
Docker
|
FROM python:3.12.1-slim-bookworm
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y -q \
|
||
|
curl \
|
||
|
&& apt-get clean \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
COPY elasticsearch.py elasticsearch.py
|
||
|
|
||
|
CMD ["python", "elasticsearch.py"]
|