Ver código fonte

feat: add bash before entrypoint.sh in Dockerfile (#592)

tags/0.3.10
John Wang 2 anos atrás
pai
commit
b0091452ca
Nenhuma conta vinculada ao e-mail do autor do commit
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1
    1
      api/Dockerfile
  2. 1
    1
      web/Dockerfile

+ 1
- 1
api/Dockerfile Ver arquivo

@@ -27,4 +27,4 @@ RUN chmod +x /entrypoint.sh
ARG COMMIT_SHA
ENV COMMIT_SHA ${COMMIT_SHA}

ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]

+ 1
- 1
web/Dockerfile Ver arquivo

@@ -26,4 +26,4 @@ RUN chmod +x /entrypoint.sh
ARG COMMIT_SHA
ENV COMMIT_SHA ${COMMIT_SHA}

ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]

Carregando…
Cancelar
Salvar