55gms / Dockerfile
GPTfree api
Create Dockerfile
fedfe88 verified
raw
history blame contribute delete
451 Bytes
# ベースイメージとして公式のNode.jsイメージを使用
FROM node:18
# 作業ディレクトリを設定
WORKDIR /usr/src/app
# 必要なツール(git)をインストール
RUN apt-get update && apt-get install -y git && apt-get clean
# リポジトリをクローン
RUN git clone https://github.com/55gms/55GMS.git .
# 必要なパッケージをインストール
RUN npm install
# index.jsを実行
CMD ["node", "index.js"]