Commit 33d4638 1 parent 079542a commit 33d4638 Copy full SHA for 33d4638
File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:latest
2
2
# Install build dependencies
3
3
RUN apt-get -qq update && apt-get install -y g++ libboost-tools-dev libssl-dev libkrb5-dev \
4
- libgssglue-dev libsnappy-dev libpng-dev libbz2-dev libhyperscan-dev git python3 gettext
4
+ libgssglue-dev libsnappy-dev libpng-dev libbz2-dev libhyperscan-dev python3 gettext
5
5
# Create build directory
6
6
RUN mkdir -p /gcc/
7
7
# Set container working directory
@@ -10,15 +10,12 @@ WORKDIR /gcc/
10
10
COPY Jamroot targets.jam /gcc/
11
11
COPY jam /gcc/jam
12
12
COPY projects/ocr1 /gcc/projects/ocr1
13
+ COPY projects/ppocr /gcc/projects/ppocr
13
14
COPY projects/redemption_configs /gcc/projects/redemption_configs
14
15
COPY tools/i18n /gcc/tools/i18n
15
16
COPY src /gcc/src
16
17
COPY include /gcc/include
17
18
COPY sys /gcc/sys
18
- # Clone ppocr repository; could be replaced with `git submodule update --init` but
19
- # if this runs from another git repository (a fork for example) the owner of the
20
- # fork must ensure they also fork ppocr and make sure that ../ppocr leads to the proper git repository
21
- RUN mkdir -p modules && cd modules && git clone https://github.com/wallix/ppocr.git ppocr
22
19
# Build and install rdpproxy
23
20
RUN bjam linkflags=-static-libstdc++ variant=release -q --toolset=gcc \
24
21
cxxflags='-DREDEMPTION_DISABLE_NO_BOOST_PREPROCESSOR_WARNING' cxx-lto=on \
You can’t perform that action at this time.
0 commit comments