We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 485faa4 commit 7a938b7Copy full SHA for 7a938b7
.devcontainer/Dockerfile
@@ -20,13 +20,21 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
20
libffi-dev \
21
libgdbm-dev \
22
sqlite3 \
23
+ && apt-get clean \
24
+ && rm -rf /var/lib/apt/lists/*
25
+
26
+RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
27
28
+RUN apt-get update && apt-get install -y --no-install-recommends \
29
nodejs \
- npm \
30
chromium \
31
chromium-driver \
32
&& apt-get clean \
33
&& rm -rf /var/lib/apt/lists/*
34
35
+# Verify Node.js and npm installation
36
+RUN node --version && npm --version
37
38
RUN echo "sentry ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/sentry \
39
&& chmod 0440 /etc/sudoers.d/sentry
40
0 commit comments