Created
December 4, 2024 13:59
-
-
Save k41n/1657b8cf18d24e19ab2320e72a94dd08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM postgres:14.13 | |
| WORKDIR /app | |
| RUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list && \ | |
| apt-get update && apt install curl unzip groff -y && \ | |
| curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \ | |
| unzip awscliv2.zip && \ | |
| ./aws/install | |
| RUN rm -r ./* && rm -rf /var/cache/apt | |
| ENTRYPOINT ["/bin/bash"] | |
| CMD ["/run.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment