harb/containers/node-dev.Containerfile
2026-02-18 00:19:05 +01:00

19 lines
297 B
Docker

FROM node:20-alpine
RUN apk add --no-cache \
dumb-init \
git \
bash \
postgresql-client \
wget \
python3 \
make \
g++
USER node
WORKDIR /workspace
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
ENV PATH="/workspace/node_modules/.bin:${PATH}"
ENTRYPOINT ["dumb-init", "--"]