Skip to content

Commit

Permalink
feat: Version Bump
Browse files Browse the repository at this point in the history
Graphviz:  9.0.0
zstd:  1.5.5
Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Sep 13, 2023
1 parent 29298f8 commit 513bd22
Show file tree
Hide file tree
Showing 11 changed files with 485 additions and 540 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/coverage
/dist
/dist-test
/docs/.vitepress/cache
/docs/.vitepress/dist
/docs/classes
/docs/interfaces
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
- [base91](https://base91.sourceforge.net/) - v0.6.0
- [expat](https://libexpat.github.io/) - v2.5.0
- [graphviz](https://www.graphviz.org/) - v8.1.0
- [zstd](https://github.com/facebook/zstd) - v1.5.4
- [graphviz](https://www.graphviz.org/) - v9.0.0
- [zstd](https://github.com/facebook/zstd) - v1.5.5
- ...more to follow...

Built with:
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.44
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.45

## Homepage and Documents

Expand Down
24 changes: 11 additions & 13 deletions docker/ubuntu-dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
FROM ubuntu:20.04
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update
RUN apt-get upgrade -y

RUN apt-get install -y build-essential
RUN apt-get install -y git cmake wget zip
RUN apt-get install -y gcc-multilib g++-multilib pkg-config autoconf bison libtool flex
RUN apt-get install -y python3 python3-pip

# Install pre-requisites (keep synced with README.md)
## NodeJS
RUN apt-get install -y curl
RUN curl --silent --location https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y ca-certificates curl gnupg
RUN mkdir -p /etc/apt/keyrings
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
ENV NODE_MAJOR=18
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN apt-get update
RUN apt-get install -y nodejs

## Other
RUN apt-get install -y build-essential
RUN apt-get install -y git cmake wget zip
RUN apt-get install -y gcc-multilib g++-multilib pkg-config autoconf bison libtool flex
RUN apt-get install -y python3 python3-pip

# Set the working directory
WORKDIR /usr/src-ts/app

Expand All @@ -34,11 +36,7 @@ RUN ./scripts/cpp-install-emsdk.sh
COPY ./vcpkg-overlays ./vcpkg-overlays
COPY ./vcpkg.json ./vcpkg.json
RUN ./scripts/cpp-install-vcpkg.sh
RUN ./vcpkg/bootstrap-vcpkg.sh
RUN ./vcpkg/vcpkg install --overlay-ports=./vcpkg-overlays

RUN npm run build

ENTRYPOINT ["/bin/sh", "-c"]

CMD ["npm", "run", "test-node"]
Loading

0 comments on commit 513bd22

Please sign in to comment.