From 47ac9abcbea9363ae8e08b331ecd00cd94014f6e Mon Sep 17 00:00:00 2001 From: Riccardo Graziosi <31478034+riggraz@users.noreply.github.com> Date: Tue, 23 May 2023 19:04:20 +0200 Subject: [PATCH] Add healthcheck task to production image (#231) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5e9a7d57..426bcd06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -84,6 +84,7 @@ COPY --from=builder ${APP_ROOT}/Gemfile.lock ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/.ruby-version ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/config.ru ${APP_ROOT}/ COPY --from=builder ${APP_ROOT}/Rakefile ${APP_ROOT}/ +COPY --from=builder ${APP_ROOT}/lib/tasks/ ${APP_ROOT}/lib/tasks/ COPY --from=builder /usr/local/bundle/config /usr/local/bundle/config ENTRYPOINT ["./docker-entrypoint-prod.sh"]