mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
4 lines
107 B
Docker
4 lines
107 B
Docker
FROM node:23-slim
|
|
RUN apt-get update -y
|
|
RUN npm install -g http-server
|
|
CMD ["http-server", "./", "--cors"]
|