You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
311 B
25 lines
311 B
FROM node:14
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
RUN ls
|
|
|
|
EXPOSE 80
|
|
#
|
|
# Installez express
|
|
RUN npm install express
|
|
|
|
# Copiez le script serveur personnalisé
|
|
COPY server.js ./build/
|
|
|
|
# Commande pour démarrer le serveur personnalisé
|
|
CMD ["node", "build/server.js"]
|