diff --git a/Dockerfile b/Dockerfile index 26aa70d..6250774 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN useradd -ms /bin/bash rust ADD peldd /usr/bin/peldd ADD package.sh /usr/bin/package.sh -RUN dnf install -y mingw64-gcc mingw64-freetype mingw64-cairo mingw64-harfbuzz mingw64-pango mingw64-poppler mingw64-gtk3 mingw64-winpthreads-static mingw64-glib2-static gcc boost zip && dnf clean all -y +RUN dnf install -y mingw64-gcc mingw64-freetype mingw64-cairo mingw64-harfbuzz mingw64-pango mingw64-poppler mingw64-gtk3 mingw64-winpthreads-static mingw64-glib2-static gcc boost zip git && dnf clean all -y USER rust @@ -33,6 +33,6 @@ CMD ["/usr/bin/package.sh"] # $ docker build . -t PROJECTNAME-build-image # 3) Creating a container with the source mounted the image (which kicks off the build): # $ docker create -v `pwd`:/home/rust/src --name PROJECTNAME-build PROJECTNAME-build-image -# 4) Each time you want to build the project, start the Docker container. +# 4) Each time you want to build the project, start the Docker container. # Add "-ai" to watch the build progress. # $ docker start PROJECTNAME-build