# 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 | |
# 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 | |