Skip to content
Closed
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
16 changes: 13 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
FROM alpine:3.17
ARG PYRET_NPM_VERSION=0.0.27
FROM node:lts-alpine3.22
ARG PYRET_NPM_VERSION=0.0.50

# install packages required to run the tests
RUN apk add --no-cache jq coreutils nodejs npm && \
RUN apk add --no-cache \
cairo-dev \
coreutils \
g++ \
jq \
pango-dev \
pkgconfig \
pixman-dev \
python3 \
make \
g++ && \
Comment on lines +5 to +15
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

g++ twice. Not a problem, but untidy.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That’s fair, but I’m still heavily reworking this. We’re pulling in a lot of new dependencies unfortunately because the image library for CPO was merged into the standard library.

npm install -g pyret-npm@$PYRET_NPM_VERSION

WORKDIR /opt/test-runner
Expand Down
Loading