resolves #35 Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: johba <johba@harb.eth> Reviewed-on: https://codeberg.org/johba/harb/pulls/39
16 lines
262 B
Docker
16 lines
262 B
Docker
FROM node:20-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
dumb-init \
|
|
git \
|
|
bash \
|
|
postgresql-client \
|
|
wget
|
|
|
|
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", "--"]
|