Spaces:
Runtime error
Runtime error
Rename DockerFile to Dockerfile
Browse files- DockerFile → Dockerfile +3 -1
DockerFile → Dockerfile
RENAMED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
FROM nginx
|
| 2 |
-
|
| 3 |
|
|
|
|
|
|
|
| 4 |
CMD ["nginx", "-c", "nginx.conf"]
|
|
|
|
| 1 |
FROM nginx
|
| 2 |
+
COPY nginx.conf /etc/nginx/nginx.conf
|
| 3 |
|
| 4 |
+
|
| 5 |
+
EXPOSE 80
|
| 6 |
CMD ["nginx", "-c", "nginx.conf"]
|