Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-45275: Failure to build prompt-service with new prompt-base #183

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
ARG STACK_TAG=d_latest
FROM lsstsqre/centos:${STACK_TAG}
ENV PYTHONUNBUFFERED True
RUN source /opt/lsst/software/stack/loadLSST.bash \
&& mamba install -y \
flask \
gunicorn \
python-confluent-kafka \
&& pip install --no-input \
cloudevents
ARG KAFKA=python-confluent-kafka
RUN <<EOT
set -ex
source /opt/lsst/software/stack/loadLSST.bash
mamba install -y flask gunicorn
mamba list ${KAFKA} | grep ${KAFKA} || mamba install -y "${KAFKA}=2.4.0"
pip install --no-input cloudevents
EOT
Loading