Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# Use the remixproject/remix-ide image as the base image
|
2 |
-
FROM
|
3 |
RUN apk update
|
4 |
RUN apk install git
|
5 |
-
RUN git clone https://github.com/
|
6 |
-
WORKDIR
|
7 |
-
|
8 |
EXPOSE 80
|
|
|
1 |
# Use the remixproject/remix-ide image as the base image
|
2 |
+
FROM node:19-alpine
|
3 |
RUN apk update
|
4 |
RUN apk install git
|
5 |
+
RUN git clone https://github.com/Block-Editor/blocks.git
|
6 |
+
WORKDIR blocks
|
7 |
+
RUN npm install
|
8 |
EXPOSE 80
|