Sfoglia il codice sorgente

change docker image work directory from /kutt to /app

Pouria Ezzati 1 anno fa
parent
commit
2345a391f8
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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 \