From 00e2d5e1fcf5c1e3e21c26d3c321bf47077374ee Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 31 Aug 2021 10:56:44 +0200 Subject: [PATCH] trying to fix dependency bug --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d4354b..8abd191 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:latest # update to the latest packages ENV DEBIAN_FRONTEND="noninteractive" -#RUN apt-get update && apt-get upgrade -y +RUN apt-get update && apt-get upgrade -y # add user that will be used to install and run the application RUN groupadd -g 1000 deploy @@ -17,7 +17,8 @@ RUN useradd -m -u 1000 -g deploy deploy # # install required packages -RUN apt-get install -y apache2 apache2-utils libapache2-mod-svn subversion python3 +RUN apt-get install -y apache2 apache2-utils libapache2-mod-svn subversion +RUN apt-get install -y python3 python3-pip # copy the script to run httpd in foreground COPY httpd-foreground /usr/local/bin/