This commit is contained in:
Ruslan Gladov 2024-06-30 21:05:57 +03:00
parent f972dcace6
commit 5e623d8cb8

View file

@ -9,10 +9,10 @@ COPY . /usr/src/app
RUN npm install RUN npm install
RUN npm install wait-on RUN npm install wait-on
COPY ./entrypoint.sh /usr/local/bin COPY entrypoint.sh /usr/local/bin
EXPOSE 8545 EXPOSE 8545
RUN chmod +x ./entrypoint.sh/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"] ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"]