Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions docker/aries-engine-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,9 @@ RUN if [ "$BUILD_TYPE" != "release" ] && [ "$BUILD_TYPE" != "debug" ]; then \
RUN apt-get update && apt-get install -y \
cmake \
clang \
build-essential

RUN apt-get install -y \
build-essential \
nodejs \
npm

RUN apt-get install -y \
npm \
curl \
wget \
file \
Expand Down Expand Up @@ -65,8 +61,8 @@ RUN chmod +x /usr/local/bin/start-aries.sh
RUN chmod +x /usr/local/bin/aries
COPY --from=builder /opt/mega/target/$BUILD_TYPE/libpipy.so /usr/local/lib/libpipy.so
# refresh shared library cache
RUN ldconfig
RUN ldconfig

VOLUME /opt/mega

CMD ["bash", "-c", "/usr/local/bin/start-aries.sh"]
CMD ["bash", "-c", "/usr/local/bin/start-aries.sh"]
10 changes: 2 additions & 8 deletions docker/mono-engine-dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,7 @@ RUN if [ "$BUILD_TYPE" != "release" ] && [ "$BUILD_TYPE" != "debug" ]; then \
RUN apt-get update && apt-get install -y \
cmake \
clang \
build-essential

RUN apt-get install -y \
nodejs \
npm

RUN apt-get install -y \
build-essential \
curl \
wget \
file \
Expand Down Expand Up @@ -63,4 +57,4 @@ RUN chmod +x /usr/local/bin/mono

VOLUME /opt/mega

CMD ["bash", "-c", "/usr/local/bin/start-mono.sh"]
CMD ["bash", "-c", "/usr/local/bin/start-mono.sh"]