ci: docker_tag=ext - Mise à jour Dockerfile avec outils requis et .cursorignore
This commit is contained in:
parent
30a3960b2e
commit
e341c45639
10
.cursorignore
Normal file
10
.cursorignore
Normal file
@ -0,0 +1,10 @@
|
||||
# Cursor ignore file for ihm_client
|
||||
node_modules/
|
||||
dist/
|
||||
*.log
|
||||
.env*
|
||||
.DS_Store
|
||||
coverage/
|
||||
build/
|
||||
pkg/
|
||||
pkg2/
|
11
Dockerfile
11
Dockerfile
@ -4,7 +4,16 @@ FROM node:20-alpine
|
||||
WORKDIR /app
|
||||
|
||||
# Installation des dépendances nécessaires
|
||||
RUN apk update && apk add --no-cache git nginx curl
|
||||
RUN apk update && apk upgrade && apk add --no-cache \
|
||||
git \
|
||||
nginx \
|
||||
curl \
|
||||
wget \
|
||||
jq \
|
||||
busybox-extras \
|
||||
npm \
|
||||
coreutils \
|
||||
&& npm install -g wscat
|
||||
|
||||
# Copy project files
|
||||
COPY . .
|
||||
|
Loading…
x
Reference in New Issue
Block a user