Update Dockerfile
Browse files- Dockerfile +4 -5
Dockerfile
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
# Use the remixproject/remix-ide image as the base image
|
2 |
-
FROM
|
3 |
RUN apk update
|
4 |
-
RUN apk
|
5 |
-
RUN apk add git
|
6 |
-
RUN apk add wget
|
7 |
RUN git clone https://github.com/ethereum/remix-project.git
|
8 |
WORKDIR remix-project
|
9 |
-
|
|
|
|
1 |
# Use the remixproject/remix-ide image as the base image
|
2 |
+
FROM nginx:alpine
|
3 |
RUN apk update
|
4 |
+
RUN apk install git
|
|
|
|
|
5 |
RUN git clone https://github.com/ethereum/remix-project.git
|
6 |
WORKDIR remix-project
|
7 |
+
COPY ./temp_publish_docker/ /usr/share/nginx/html/
|
8 |
+
RUN
|