Files
caravels-community-simulation/Dockerfile
rafaeldpsilva adbbf6bf50 first commit
2025-12-10 12:32:12 +00:00

14 lines
333 B
Docker

FROM node:lts-alpine AS node
# install simple http server for serving static content
RUN npm install -g http-server
# make the 'app' folder the current working directory
WORKDIR /app
# copy project files and folders to the current working directory (i.e. 'app' folder)
COPY . .
EXPOSE 8080
CMD ["http-server", ".", "-p", "8080"]