Commit 65004aaf authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Included vos_import.

parent e2fc045e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -9,8 +9,9 @@ RUN apt-get -y update && apt-get -y install postgresql-client && apt-get -y inst
RUN useradd -m -s /bin/bash client

# Copy the source code of all client apps
COPY vos_data /usr/bin/
RUN chmod 755 /usr/bin/vos_data
COPY vos_data vos_import /usr/bin/
RUN chmod 755 /usr/bin/vos_data && \
    chmod 755 /usr/bin/vos_import
    
# Run commands as 'client' user
USER client