mirror of
https://github.com/PlaneQuery/OpenAirframes.git
synced 2026-04-25 12:36:24 +02:00
13 lines
291 B
Docker
13 lines
291 B
Docker
FROM --platform=linux/arm64 python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.worker.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY compress_adsb_to_aircraft_data.py .
|
|
COPY download_adsb_data_to_parquet.py .
|
|
COPY worker.py .
|
|
|
|
CMD ["python", "-u", "worker.py"]
|