Skip to content

Commit a1d3f8d

Browse files
Use PROMPT_ALWAYS_RESPOND=n after package installation
1 parent 02f572a commit a1d3f8d

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

presto-native-execution/.devcontainer/Dockerfile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
# Set base image
44
FROM quay.io/centos/centos:stream9
55

6+
ENV PROMPT_ALWAYS_RESPOND=y
7+
# Install necessary packages
8+
RUN dnf config-manager --enable crb
9+
RUN dnf update && dnf install -y epel-release
10+
RUN dnf install -y git \
11+
make \
12+
which \
13+
iputils \
14+
hostname
15+
16+
617
# Toolchain and platform environment variables
718
ENV PROMPT_ALWAYS_RESPOND=n
819
ENV CC=/opt/rh/gcc-toolset-12/root/bin/gcc
@@ -16,16 +27,6 @@ ENV BUILD_BASE_DIR=_build
1627
ENV BUILD_DIR=""
1728
ENV DEPENDENCY_DIR="/deps-download"
1829
ENV INSTALL_PREFIX="/deps-install"
19-
20-
# Install necessary packages
21-
RUN dnf config-manager --enable crb
22-
RUN dnf update && dnf install -y epel-release
23-
RUN dnf install -y git \
24-
make \
25-
which \
26-
iputils \
27-
hostname
28-
2930
# download git repo
3031
RUN git clone https://github.com/prestodb/presto.git /source
3132
#

0 commit comments

Comments
 (0)