소스 검색

Merge pull request #265 from zilliztech/update-docker

get rid of apline version of container
ryjiang 2 년 전
부모
커밋
4d89ed1daf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,5 +1,5 @@
 # => Building container
-FROM node:18-alpine as builder
+FROM node:18 as builder
 WORKDIR /app
 COPY . .
 
@@ -15,7 +15,7 @@ ENV PORT 80
 RUN yarn build
 
 # => Copy to Final container
-FROM node:18-alpine
+FROM node:18
 WORKDIR /app
 COPY --from=builder /app/server/dist /app/dist
 COPY --from=builder /app/client/build /app/build