Files
neon/tmp-proxy-test/Dockerfile
2023-03-15 11:52:37 +04:00

13 lines
347 B
Docker

FROM neondatabase/neon:local
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"]