summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index b6526460f..9e87709d1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,12 +8,12 @@ ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sna
8 8
9ARG DEBIAN_FRONTEND=noninteractive 9ARG DEBIAN_FRONTEND=noninteractive
10# Note: This is added for building on ARM machines 10# Note: This is added for building on ARM machines
11ARG USE_SYSTEM_FPM="true" 11ARG USE_SYSTEM_FPM=true
12# Note: Added to bypass the error with missing git repo information for the 'preval-build-info' module 12# Note: Added to bypass the error with missing git repo information for the 'preval-build-info' module
13ARG PREVAL_BUILD_INFO_PLACEHOLDERS=true 13ARG PREVAL_BUILD_INFO_PLACEHOLDERS=true
14 14
15RUN apt-get update \ 15RUN sudo apt-get update \
16 && apt-get install -y rpm ruby gem \ 16 && apt-get install gcc-multilib rpm ruby gem \
17 && gem install fpm --no-ri --no-rdoc --no-document 17 && gem install fpm --no-ri --no-rdoc --no-document
18 18
19WORKDIR /usr/src/ferdi 19WORKDIR /usr/src/ferdi