Create Dockerfile
This commit is contained in:
parent
33a93a12b4
commit
526c083ab5
|
@ -0,0 +1,6 @@
|
|||
FROM node:lts-alpine
|
||||
RUN npm install -g http-server
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
EXPOSE 8080
|
||||
CMD [ "http-server" ]
|
Loading…
Reference in New Issue