mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -05:00
10 lines
134 B
Docker
10 lines
134 B
Docker
FROM node:8
|
|
|
|
RUN mkdir -p /var/app/current
|
|
WORKDIR /var/app/current
|
|
COPY . ./
|
|
RUN rm -rf ./node_modules
|
|
RUN npm install
|
|
|
|
EXPOSE 8333
|
|
|