We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5e3de commit c91d54fCopy full SHA for c91d54f
1 file changed
Dockerfile
@@ -2,15 +2,13 @@ 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.60.0
+ PATH="/root/.cargo/bin:$PATH" rustup install 1.61.0
6
ENV PATH $PATH:/root/.cargo/bin
7
8
# Install node
9
RUN curl -sL https://rpm.nodesource.com/setup_12.x | bash - && \
10
yum install -y nodejs && yum clean all
11
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 libpq-dev \
16
&& yum clean all
0 commit comments