El Dockerfile para el fronted

This commit is contained in:
Amin Chaloukh 2024-10-17 11:52:23 +02:00
parent 42e52db806
commit bc3429171b

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