File size: 371 Bytes
dc00d9f f037a7e 7622081 f037a7e ec4ea49 f037a7e ec4ea49 f037a7e ec4ea49 f037a7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.11-slim-buster
RUN apt-get update
RUN apt-get install -y gdal-bin libgdal-dev
RUN pip install GDAL --no-binary GDAL
# Install other dependencies (if any)
RUN pip install cupy-cuda12x==12.2.0
RUN pip install GDAL
# Copy your application code
COPY . /app
WORKDIR /app
# Run your application (replace with your actual command)
CMD ["python", "server.py"] |