We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a40d9 commit bb2d4caCopy full SHA for bb2d4ca
docker-compose-local.yml
@@ -65,6 +65,7 @@ services:
65
- type=local,src=/tmp/.build-cache/client
66
args:
67
VITE_API_URL: ${VITE_API_URL}
68
+ VITE_KAKAO_API_KEY: ${VITE_KAKAO_API_KEY}
69
image: yejinoh58/timepaper-client-image:local
70
env_file:
71
- .env.local
frontend/Dockerfile
@@ -1,8 +1,10 @@
1
# 빌드 단계
2
FROM node:23-alpine AS build
3
4
-ARG VITE_API_URL
+ARG VITE_API_URL
5
+ARG VITE_KAKAO_API_KEY
6
ENV VITE_API_URL=$VITE_API_URL
7
+ENV VITE_KAKAO_API_KEY=$VITE_KAKAO_API_KEY
8
9
WORKDIR /app
10
0 commit comments