Files
postgsail/tests/Dockerfile
github-actions-bot 80d009fd6e Updates
2024-02-23 20:55:54 +00:00

8 lines
261 B
Docker

FROM node:lts
ENV DEBIAN_FRONTEND=noninteractive
# Install and update the system
RUN apt-get -q update && apt-get -qy upgrade && apt-get -qy install postgresql-client
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*