diff --git a/public/Dockerfile b/public/Dockerfile new file mode 100644 index 00000000..e1bd605d --- /dev/null +++ b/public/Dockerfile @@ -0,0 +1,6 @@ +FROM node:lts-alpine +RUN npm install -g http-server +COPY . /app +WORKDIR /app +EXPOSE 8080 +CMD [ "http-server" ]