Some checks failed
ecommerce frontend/pipeline/head Something is wrong with the build of this commit
17 lines
238 B
Docker
17 lines
238 B
Docker
FROM mirror.gcr.io/library/node:20-bullseye-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
ARG VITE_API_BASE_URL
|
|
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
|
|
|
|
RUN npm run build
|
|
|
|
EXPOSE 5173
|
|
|
|
CMD ["npm", "run", "preview"] |