harb/containers/node-dev.Containerfile

17 lines
262 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 \
wget
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", "--"]