File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 6363
6464FROM node:22-alpine AS base
6565
66- # Define arguments for environment variables
6766ARG VITE_SUPABASE_SERVICE_KEY
6867ARG VITE_KAKAOMAP_KEY
6968ARG VITE_VISITJEJU_KEY
@@ -75,7 +74,6 @@ WORKDIR /app
7574COPY package.json yarn.lock ./
7675RUN yarn install --frozen-lockfile
7776
78- # Copy source code and set environment variables
7977COPY . .
8078ENV VITE_SUPABASE_SERVICE_KEY=$VITE_SUPABASE_SERVICE_KEY
8179ENV VITE_KAKAOMAP_KEY=$VITE_KAKAOMAP_KEY
@@ -85,10 +83,8 @@ ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
8583ENV VITE_SUPABASE_BASE_URL=$VITE_SUPABASE_BASE_URL
8684ENV NODE_ENV=production
8785
88- # Build the Vite application
8986RUN yarn build
9087
91- # Nginx server to serve static files
9288FROM nginx:stable-alpine AS runner
9389
9490COPY nginx/nginx.conf /etc/nginx/nginx.conf
You can’t perform that action at this time.
0 commit comments