-
Notifications
You must be signed in to change notification settings - Fork 262
/
Dockerfile
39 lines (28 loc) · 1.28 KB
/
Dockerfile
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
30
31
32
33
34
35
36
37
38
39
FROM ciimage/python:3.9-ci
RUN curl -sL https://starkware-third-party.s3.us-east-2.amazonaws.com/build_tools/node-v18.17.0-linux-x64.tar.xz -o node-v18.17.0-linux-x64.tar.xz && \
tar -xf node-v18.17.0-linux-x64.tar.xz -C /opt/ && \
rm -f node-v18.17.0-linux-x64.tar.xz
ENV PATH="${PATH}:/opt/node-v18.17.0-linux-x64/bin"
COPY ./docker_common_deps.sh /app/
WORKDIR /app/
RUN ./docker_common_deps.sh
# Install solc and ganache
RUN curl https://binaries.soliditylang.org/linux-amd64/solc-linux-amd64-v0.6.12+commit.27d51765 -o /usr/local/bin/solc-0.6.12
RUN echo 'f6cb519b01dabc61cab4c184a3db11aa591d18151e362fcae850e42cffdfb09a /usr/local/bin/solc-0.6.12' | sha256sum --check
RUN chmod +x /usr/local/bin/solc-0.6.12
RUN npm install -g --unsafe-perm ganache@7.9.0 vsce@1.87.1
COPY . /app
RUN chown -R starkware:starkware /app
USER starkware
# Build the cairo-lang package.
RUN bazel build //src/starkware/cairo/lang:create_cairo_lang_package_zip
RUN build/bazelbin/src/starkware/cairo/lang/create_cairo_lang_package_zip
# Build and test all the targets.
RUN bazel build //...
RUN bazel test //...
RUN src/starkware/cairo/lang/package_test/run_test.sh
# Build the Visual Studio Code extension.
WORKDIR /app/src/starkware/cairo/lang/ide/vscode-cairo
RUN npm install
RUN vsce package
WORKDIR /app/