harb/containers/node-dev.Containerfile

20 lines
297 B
Text
Raw Permalink Normal View History

FROM node:20-alpine
2025-09-24 10:57:22 +02:00
RUN apk add --no-cache \
dumb-init \
git \
bash \
postgresql-client \
2026-02-18 00:19:05 +01:00
wget \
python3 \
make \
g++
2025-09-24 10:57:22 +02:00
USER node
WORKDIR /workspace
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
2025-09-24 10:57:22 +02:00
ENV PATH="/workspace/node_modules/.bin:${PATH}"
ENTRYPOINT ["dumb-init", "--"]