File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed
presto-native-execution/.devcontainer Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change 33# Set base image
44FROM 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
718ENV PROMPT_ALWAYS_RESPOND=n
819ENV CC=/opt/rh/gcc-toolset-12/root/bin/gcc
@@ -16,16 +27,6 @@ ENV BUILD_BASE_DIR=_build
1627ENV BUILD_DIR=""
1728ENV DEPENDENCY_DIR="/deps-download"
1829ENV 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
3031RUN git clone https://github.com/prestodb/presto.git /source
3132#
You can’t perform that action at this time.
0 commit comments