Imagen Dockerfile backend

This commit is contained in:
Amin Chaloukh 2024-10-17 11:48:51 +02:00
parent d5e906cca0
commit cff5d587e2

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alpine:3.14
RUN apk update && apk add --no-cache nodejs npm make g++
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm", "start"]
EXPOSE 8080