# 程式開發環境-scratch3

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

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

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

![](https://529150212-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-Lh81JtaIQ84bwQqz_Wh%2F-Ljtti31UHU1YMovDfPw%2F-Ljttj6HLrNAH4-RHb-C%2Fimage.png?alt=media\&token=e4711f31-803a-47e9-b602-96c9d4ead3de)

## Notices <a href="#notices" id="notices"></a>

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