源码: https://github.com/chvin/react-tetris.git
FROM node:lts-alpine AS build0
COPY . /tetris/
WORKDIR /tetris
RUN npm config set registry https://repo.huaweicloud.com/repository/npm/ && \
npm cache clean -f && \
npm install && \
npm run build
FROM nginx:alpine
COPY --from=build0 /tetris/docs /usr/share/nginx/html
docker build -t uscwifi/tetris:latest .
docker run -d --name tetris -p 8090:80 uscwifi/tetris:latest

Content type
Image
Digest
Size
10.2 MB
Last updated
over 5 years ago
docker pull uscwifi/tetris