8681f75bab
* chore(): skaffold
* chore(): kubernetes integration
* chore(skaffold): refine shokohsc profile
* chore(): removed docker & kubernetes from database + stoppedApp pin option
* Revert "chore(): removed docker & kubernetes from database + stoppedApp pin option"
This reverts commit 5111c7ad79
.
16 lines
326 B
Text
16 lines
326 B
Text
FROM node:lts-alpine as build-front
|
|
RUN apk add --no-cache curl
|
|
WORKDIR /app
|
|
COPY ./client .
|
|
RUN npm install --production \
|
|
&& npm run build
|
|
|
|
FROM node:lts-alpine
|
|
WORKDIR /app
|
|
RUN mkdir -p ./public
|
|
COPY --from=build-front /app/build/ ./public
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
CMD ["npm", "run", "skaffold"]
|