This commit is contained in:
骑着毛驴去纽约
2021-04-17 06:42:01 +00:00
committed by GitHub

6
public/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:lts-alpine
RUN npm install -g http-server
COPY . /app
WORKDIR /app
EXPOSE 8080
CMD [ "http-server" ]