程式開發環境-scratch3

https://github.com/kadok0520/MIT-Scratch3

建立本地scratch3開發環境伺服器

docker run -d -p 8601:8601 --name scratch3_01 kadok0520/mit-scratch3

Notices

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"]

Last updated