Piped-Material-2 / Dockerfile
soiz1's picture
Update Dockerfile
109f402 verified
raw
history blame
341 Bytes
# ベースイメージとして公式の NGINX イメージを使用
FROM nginx:latest
# 必要なファイルをリポジトリから取得
RUN git clone https://github.com/izum00/Piped-Material.git /app
WORKDIR /app
# コンテナがリッスンするポートを指定
EXPOSE 80
# NGINX を起動
CMD ["nginx", "-g", "daemon off;"]