ソースを参照

change docker image work directory from /kutt to /app

Pouria Ezzati 1 年間 前
コミット
2345a391f8
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -5,7 +5,7 @@ FROM node:22-alpine
 ENV NODE_ENV=production
 
 # set working directory.
-WORKDIR /kutt
+WORKDIR /app
 
 # download dependencies while using Docker's caching
 RUN --mount=type=bind,source=package.json,target=package.json \