소스 검색

fix: Dockerfile and add dockeringore

Oliver Windall Juhl 3 년 전
부모
커밋
761094c0c2
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      .dockerignore
  2. 2 0
      Dockerfile

+ 4 - 0
.dockerignore

@@ -0,0 +1,4 @@
+dist
+node_modules
+
+npm-debug.log

+ 2 - 0
Dockerfile

@@ -16,4 +16,6 @@ RUN npm install -g @medusajs/medusa-cli@latest
 
 RUN npm install
 
+COPY . .
+
 ENTRYPOINT ["./develop.sh"]