forked from microsoft/ccf-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (24 loc) · 756 Bytes
/
Dockerfile
File metadata and controls
29 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM mcr.microsoft.com/ccf/app/dev:4.0.7-virtual
# Install Node.js
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get install -y nodejs
RUN apt-get update && \
apt-get install -y cmake g++ && \
rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
libboost-all-dev
RUN apt-get update && \
apt-get install -y wget && \
wget https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.bz2 && \
tar xjf eigen-3.4.0.tar.bz2 && \
rm eigen-3.4.0.tar.bz2
# Create a build directory
# RUN cd eigen-3.4.0
# RUN mkdir build
# RUN cd build
# RUN cmake ..
# RUN mkdir build
# WORKDIR /usr/src/app/build
# RUN cmake ../eigen-3.4.0