update pour test
This commit is contained in:
parent
de1bdaf8b0
commit
30dcc079b4
@ -5,10 +5,13 @@ FROM node:18
|
|||||||
RUN apt-get update && apt-get install -y git
|
RUN apt-get update && apt-get install -y git
|
||||||
|
|
||||||
# Créer un répertoire de travail dans le conteneur
|
# Créer un répertoire de travail dans le conteneur
|
||||||
WORKDIR . /
|
WORKDIR /app
|
||||||
|
|
||||||
COPY . /
|
# Copier tous les fichiers de la racine du projet dans /app
|
||||||
|
COPY . /app/
|
||||||
|
|
||||||
|
# Installer les dépendances
|
||||||
|
RUN npm install --verbose
|
||||||
|
|
||||||
# Exposer le port sur lequel l'application s'exécute
|
# Exposer le port sur lequel l'application s'exécute
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user