Skip to content

Commit

Permalink
chore: add some missing libs
Browse files Browse the repository at this point in the history
  • Loading branch information
radoslaw-szpiech committed Sep 6, 2023
1 parent c35244b commit c914355
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions console-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM summerwind/actions-runner:v2.308.0-ubuntu-22.04

USER root
RUN curl -sSL https://install.python-poetry.org | python3 - \
&& curl -s https://deb.nodesource.com/setup_16.x | bash \
&& curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y \
libnss3 \
Expand All @@ -22,7 +25,12 @@ RUN curl -sSL https://install.python-poetry.org | python3 - \
libgbm1 \
libpango-1.0-0 \
libcairo2 \
libasound2
libasound2 \
nodejs \
yarn \
&& rm -rf /var/lib/apt/lists/*

USER runner
RUN poetry --version
RUN poetry --version
RUN node -v
RUN yarn -v
2 changes: 1 addition & 1 deletion console-test/version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "v2.308.0-ubuntu-22.04-3",
"version": "v2.308.0-ubuntu-22.04-4",
"name": "vegaprotocol/console-test"
}

0 comments on commit c914355

Please sign in to comment.