diff --git a/server/Dockerfile b/server/Dockerfile index 5f3c8a6..d70921d 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -21,17 +21,17 @@ RUN yarn run build # RUN -#FROM builder AS prod +FROM builder AS prod -#WORKDIR /api +WORKDIR /api #COPY package.json yarn.lock ./ #RUN yarn install --production -#COPY --from=builder /dist ./dist +COPY --from=builder /dist ./dist # Exponer el puerto que la API usa -#EXPOSE 3000 +EXPOSE 3000 # Comando para correr la aplicación -#CMD ["node", "dist/server/index.js"] \ No newline at end of file +CMD ["node", "dist/server/index.js"] \ No newline at end of file