Skip to content

Commit

Permalink
fixing Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
shashitnak committed May 21, 2024
1 parent 76b93d0 commit 800ee4a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ COPY entrypoint.sh /entrypoint.sh
COPY tailcall.tf /tmp/tailcall.tf
COPY config/config.graphql /tmp/config.graphql

RUN yum update \
&& yum upgrade \
&& yum install \
&& yum install -y yum-utils \
RUN yum update -y \
&& yum upgrade -y \
&& yum install -y yum-utils gcc curl \
&& yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo \
&& yum -y install terraform \
&& yum -y install curl \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
&& source $HOME/.cargo/env \
&& cargo install cargo-lambda \
&& git clone https://github.com/tailcallhq/tailcall \
&& cd tailcall \
&& cargo lambda build -p tailcall-aws-lambda --release \
Expand Down

0 comments on commit 800ee4a

Please sign in to comment.