ci: docker_tag=ext - Mise à jour Dockerfile avec outils requis et .cursorignore
This commit is contained in:
parent
80b74edcc6
commit
b507c54c70
10
.cursorignore
Normal file
10
.cursorignore
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Cursor ignore file for lecoffre-front
|
||||||
|
node_modules/
|
||||||
|
.next/
|
||||||
|
dist/
|
||||||
|
*.log
|
||||||
|
.env*
|
||||||
|
.DS_Store
|
||||||
|
coverage/
|
||||||
|
build/
|
||||||
|
out/
|
10
Dockerfile
10
Dockerfile
@ -5,7 +5,15 @@ WORKDIR /leCoffre-front
|
|||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
COPY package-lock.json ./
|
COPY package-lock.json ./
|
||||||
|
|
||||||
RUN apk update && apk add --no-cache git
|
RUN apk update && apk upgrade && apk add --no-cache \
|
||||||
|
git \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
jq \
|
||||||
|
busybox-extras \
|
||||||
|
npm \
|
||||||
|
coreutils \
|
||||||
|
&& npm install -g wscat
|
||||||
|
|
||||||
# Installation des dépendances
|
# Installation des dépendances
|
||||||
RUN --mount=type=cache,target=/root/.npm \
|
RUN --mount=type=cache,target=/root/.npm \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user