Last updated 5 years ago
https://github.com/kadok0520/MIT-Scratch3
建立本地scratch3開發環境伺服器
docker run -d -p 8601:8601 --name scratch3_01 kadok0520/mit-scratch3
Your server will cost at least 500 MB Memory !
Dockerfile
FROM node:alpine MAINTAINER Hong-Da, Ke RUN apk add --no-cache git \ && cd /root \ && git clone https://github.com/LLK/scratch-gui.git \ && cd scratch-gui \ && npm install WORKDIR /root/scratch-gui EXPOSE 8601 CMD ["npm","start"]