dd dokcerfile for test image

This commit is contained in:
xbgmsharp
2023-07-11 22:35:39 +02:00
parent 3a2ef95e25
commit 0f7284b8c8

8
tests/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
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/*