Skip to content

Commit

Permalink
change build to x86_64 (reverting 031bdb3)
Browse files Browse the repository at this point in the history
  • Loading branch information
LynxAbraxas committed Nov 17, 2018
1 parent 2fc3aee commit e3144da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
@@ -1,7 +1,7 @@
################################################################################
# base system
################################################################################
FROM i386/ubuntu:14.04 as system
FROM ubuntu:14.04 as system

ENV USERNAME diUser
RUN useradd -m $USERNAME && \
Expand Down Expand Up @@ -53,9 +53,9 @@ COPY ctp2CD/ /opt/ctp2/

RUN cd /ctp2 && \
make bootstrap && \
LD_LIBRARY_PATH="${LD_LIBRARY_PATH} /usr/lib/i386-linux-gnu/" \
CFLAGS="-Wl,--no-as-needed -ggdb -m32" \
CXXFLAGS="-fpermissive -Wl,--no-as-needed -ggdb -m32" \
LD_LIBRARY_PATH="${LD_LIBRARY_PATH} /usr/lib/x86_64-linux-gnu/" \
CFLAGS="-Wl,--no-as-needed -ggdb " \
CXXFLAGS="-fpermissive -Wl,--no-as-needed -ggdb " \
./configure --prefix=/opt/ctp2 --bindir=/opt/ctp2/ctp2_program/ctp --enable-silent-rules && \
make && \
make install && \
Expand Down

0 comments on commit e3144da

Please sign in to comment.