diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..dcffb592 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +# This is the dockerfile for the AWS amplify image compatible with NodeJS v18 +FROM node:18-slim + +RUN apt-get update +RUN apt-get install git -y +RUN apt-get install openssh-client -y +RUN apt-get install curl -y + +CMD ["/bin/bash"]