mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
feat: update Dockerfile to include curl (#539)
* Update Dockerfile for include curl * missing RUN
This commit is contained in:
parent
d1d7f61fe1
commit
3d40dce76a
1 changed files with 4 additions and 0 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
# Base node image
|
# Base node image
|
||||||
FROM node:19-alpine AS node
|
FROM node:19-alpine AS node
|
||||||
|
|
||||||
|
# Install curl for health check
|
||||||
|
RUN apk --no-cache add curl
|
||||||
|
|
||||||
COPY . /app
|
COPY . /app
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue