mirror of
https://github.com/PlaneQuery/OpenAirframes.git
synced 2026-05-05 09:05:10 +02:00
12 lines
254 B
Docker
12 lines
254 B
Docker
FROM --platform=linux/arm64 python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.reducer.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY compress_adsb_to_aircraft_data.py .
|
|
COPY reducer.py .
|
|
|
|
CMD ["python", "-u", "reducer.py"]
|