Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
# ベースイメージとして公式の NGINX イメージを使用
|
2 |
FROM nginx:latest
|
3 |
|
|
|
|
|
4 |
# 必要なファイルをリポジトリから取得
|
5 |
RUN git clone https://github.com/izum00/Piped-Material.git /app
|
6 |
|
|
|
1 |
# ベースイメージとして公式の NGINX イメージを使用
|
2 |
FROM nginx:latest
|
3 |
|
4 |
+
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
5 |
+
|
6 |
# 必要なファイルをリポジトリから取得
|
7 |
RUN git clone https://github.com/izum00/Piped-Material.git /app
|
8 |
|