🐛 Add wget to docker image for healthcheck

This commit is contained in:
ajnart
2023-10-26 13:13:25 +02:00
parent 171be4b767
commit dff3ba5397

View File

@@ -22,7 +22,7 @@ RUN mkdir database
COPY ./src/migrate.ts ./src/migrate.ts
# Install dependencies
RUN apt-get update -y && apt-get install -y openssl
RUN apt-get update -y && apt-get install -y openssl wget
# Required for migration
RUN mv node_modules _node_modules