Compare commits

..

2 Commits

Author SHA1 Message Date
63a73571cf El dockfile para el frontend 2024-10-17 11:53:39 +02:00
bc3429171b El Dockerfile para el fronted 2024-10-17 11:52:23 +02:00

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