mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
13 lines
348 B
Docker
13 lines
348 B
Docker
FROM neondatabase/neon:latest
|
|
|
|
USER root
|
|
RUN apt-get update && apt-get install -y curl
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash - && apt-get install -y nodejs
|
|
|
|
COPY . /tmp-proxy-test
|
|
RUN chown -R neon:neon /tmp-proxy-test
|
|
USER neon
|
|
RUN cd /tmp-proxy-test && npm install
|
|
|
|
ENTRYPOINT ["/bin/bash", "/tmp-proxy-test/entrypoint.sh"]
|