asteroid / Dockerfile
hologramicon's picture
Update Dockerfile
c129a51 verified
raw
history blame contribute delete
348 Bytes
FROM node:18-slim
# Instala un servidor HTTP global
RUN npm install -g http-server
# Copia tus archivos de aplicaci贸n
COPY . /app
WORKDIR /app
EXPOSE 7860
# Inicia el servidor HTTP de Node.js en el puerto 7860
CMD ["http-server", "-p", "7860"]
# Dummy change to force rebuild: 2025-05-20 (puedes usar la fecha actual o un n煤mero de versi贸n)