`Dockerfile` libkrb5-dev is the dependency which a...
# ask-community
m
Dockerfile
libkrb5-dev is the dependency which allows pip to build arcgis dependencies successfully on my local. GH keeps failing with no visibility on why
Copy code
FROM python:3.9-slim

LABEL authors="marcel"

RUN apt update && apt upgrade -y
RUN apt install libkrb5-dev -y
RUN apt-get clean

RUN pip install --no-cache-dir --upgrade \
    "dagster-cloud[serverless]"