Remix-ide / Dockerfile
memex-in's picture
Update Dockerfile
b84d676 verified
# Use the remixproject/remix-ide image as the base image
FROM node:19-alpine
RUN apk update
RUN apk add git
RUN git clone https://github.com/Block-Editor/blocks
WORKDIR blocks
RUN npm install
EXPOSE 80