Sign inSign up

uscwifi/tetris

By uscwifi

•Updated over 5 years ago

超好玩的俄罗斯方块小游戏,docker镜像26MB

Image
0

919

uscwifi/tetris repository overview

源码: https://github.com/chvin/react-tetris.git⁠

⁠Dockerfile
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
⁠浏览器访问

Tag summary

Content type

Image

Digest

Size

10.2 MB

Last updated

over 5 years ago

docker pull uscwifi/tetris