Hey :wave: I also have a question regarding the Do...
# deployment-kubernetes
c
Hey 👋 I also have a question regarding the Docker image for the UserDeployments — what is the
BASE IMAGE
expected to be in the example Dockerfile? Should I first build a Docker image containing my Dagster project, and provide it as the base image here?
r
We use
python:3.7.8-slim
- in the same directory, it’s defined under versions.yaml. Depending on whether you’ll need to install external libraries that your pipelines will require, it might be nice to bake those into the base image before copying/installing your Dagster project over to the image. Otherwise, some default Python Docker image should be good to use as the base image.
c
Ah! That makes so much sense, I can’t believe I missed that. 🤦‍♂️ Thanks @rex !