Fix healthchecks: install curl in backend and frontend images
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
FROM node:22-alpine
|
||||
RUN apk add --no-cache curl
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm ci --only=production
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["node", "server.js"]
|
||||
Reference in New Issue
Block a user