Loading test_client/Dockerfile +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 Loading Loading
test_client/Dockerfile +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 Loading