Files
neon/tmp-proxy-test/Dockerfile
Stas Kelvich 238f9ad3c5 repro
2023-03-15 01:58:39 +02:00

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"]