Commit 1164ff31 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added psql client to the test_client container.

parent 9b403082
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Use python 3 as base image
FROM python:3

# Install psql client to be able to connect manually to the file_catalog container
RUN apt-get -y update && apt-get -y install postgresql-client 

# Create a new user called test_client, create the home directory and set the default shell
RUN useradd -m -s /bin/bash test_client