Compare commits

...

3 Commits

Author SHA1 Message Date
Avraham Sakal 819ca5733f oops. now need to include postcss.config.js in Dockerfile 2024-06-17 22:01:42 -04:00
Avraham Sakal 767691902c oops. now need to include tailwind.config.js in Dockerfile 2024-06-17 21:58:39 -04:00
Avraham Sakal c53b8515da oops. now need to include index.css in Dockerfile 2024-06-17 21:54:53 -04:00
+1 -1
View File
@@ -9,7 +9,7 @@ COPY package.json pnpm-lock.yaml /app/
# install dependencies:
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
# copy what's necessary to build:
COPY tsconfig.json vite.config.ts index.html /app/
COPY tsconfig.json vite.config.ts index.html index.css postcss.config.js tailwind.config.js /app/
COPY src /app/src
# Vite injects envvars at build time, not runtime:
ENV VITE_SERVER_BASE_URL=https://calendar-optimizer-server.sakal.us