Skip to content

Commit

Permalink
deployment: fix interactivity for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxux committed Jan 27, 2025
1 parent d544bb5 commit 95214e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ FROM ubuntu:22.04
COPY --from=build /0-flist/zflist/zflist /usr/bin/
COPY --from=build /hub.tar /

RUN apt-get update && apt-get install -y \
RUN export DEBIAN_FRONTEND=noninteractive && \
export DEBCONF_NONINTERACTIVE_SEEN=true && \
apt-get update && apt-get install -y \
python3-flask python3-redis python3-docker python3-pytoml \
python3-requests python3-nacl python3-jose \
docker.io && \
Expand Down

0 comments on commit 95214e9

Please sign in to comment.