We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1f1b7c commit 9ace897Copy full SHA for 9ace897
1 file changed
Dockerfile
@@ -2,7 +2,7 @@ FROM amazonlinux:latest
2
3
# Install rust
4
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable && \
5
- PATH="/root/.cargo/bin:$PATH" rustup install 1.50.0
+ PATH="/root/.cargo/bin:$PATH" rustup install 1.55.0
6
ENV PATH $PATH:/root/.cargo/bin
7
8
# Install node
@@ -12,7 +12,7 @@ RUN curl -sL https://rpm.nodesource.com/setup_12.x | bash - && \
12
RUN npm i -g neon-cli
13
14
# Install dependencies
15
-RUN yum install -y git make gcc gcc-c++ libgcc openssl-devel readline-devel sqlite-devel \
+RUN yum install -y git make gcc gcc-c++ libgcc openssl-devel readline-devel sqlite-devel libpq-dev \
16
&& yum clean all
17
18
RUN rm -rf /var/cache/yum
0 commit comments