feat: update Dockerfile to include curl (#539)

* Update Dockerfile for include curl

* missing RUN
This commit is contained in:
Shi Jin 2023-06-22 10:43:12 -06:00 committed by GitHub
parent d1d7f61fe1
commit 3d40dce76a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,9 @@
# Base node image
FROM node:19-alpine AS node
# Install curl for health check
RUN apk --no-cache add curl
COPY . /app
# Install dependencies
WORKDIR /app