Skip to content

Commit

Permalink
fix: install nodejs and npm dependencies (#2210)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomiguelino authored Feb 6, 2025
1 parent 25a6dee commit c6550ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker/Dockerfile.server.j2
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{% if environment == 'production' %}
FROM debian:bookworm AS node-builder

RUN \
apt-get update && \
RUN apt-get update && \
apt-get -y install --no-install-recommends \
python3 \
python3-pip \
python3-setuptools \
python3-wheel \
python3-six \
nodejs \
npm

Expand Down

0 comments on commit c6550ea

Please sign in to comment.