File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ services:
55
55
environment :
56
56
- WAIT_HOSTS=mariadb:${DATABASE_PORT}
57
57
healthcheck :
58
- test : curl -f http://localhost:3000
58
+ test : wget -O - http://localhost:3000
59
59
retries : 3
60
60
timeout : 5s
61
61
build :
Original file line number Diff line number Diff line change 4
4
# https://hub.docker.com/_/node
5
5
FROM node:lts-alpine
6
6
7
- # Add cURL for health check, OpenSSL for generating random secret
8
- # and SuperCronic for cronjobs
9
- RUN apk update && apk add --no-cache curl openssl supercronic
7
+ # Add OpenSSL for generating random secret and SuperCronic for cronjobs
8
+ RUN apk update && apk add --no-cache openssl supercronic
10
9
11
10
# Set the working directory to the website files
12
11
WORKDIR /usr/src/app
Original file line number Diff line number Diff line change 4
4
# https://hub.docker.com/_/node
5
5
FROM node:lts-alpine
6
6
7
- # Add cURL for health check, OpenSSL for generating random secret
8
- # and SuperCronic for cronjobs
9
- RUN apk update && apk add --no-cache curl openssl supercronic
7
+ # Add OpenSSL for generating random secret and SuperCronic for cronjobs
8
+ RUN apk update && apk add --no-cache openssl supercronic
10
9
11
10
# Set the working directory to the website files
12
11
WORKDIR /usr/src/app
You can’t perform that action at this time.
0 commit comments