Skip to content

Instantly share code, notes, and snippets.

@k41n
Created December 4, 2024 13:59
Show Gist options
  • Select an option

  • Save k41n/1657b8cf18d24e19ab2320e72a94dd08 to your computer and use it in GitHub Desktop.

Select an option

Save k41n/1657b8cf18d24e19ab2320e72a94dd08 to your computer and use it in GitHub Desktop.
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