This commit is contained in:
29
docker/frontend/Dockerfile
Normal file
29
docker/frontend/Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
||||
FROM node:24.11.0-alpine3.22 AS builder
|
||||
WORKDIR /app
|
||||
|
||||
#ENV
|
||||
ENV BACKEND_URL=###MONKEYTYPE_BACKENDURL### RECAPTCHA_SITE_KEY=###RECAPTCHA_SITE_KEY###
|
||||
|
||||
#COPY
|
||||
COPY ["package.json", "pnpm-lock.yaml", "pnpm-workspace.yaml", "turbo.json", "./"]
|
||||
COPY packages packages
|
||||
COPY frontend frontend
|
||||
|
||||
COPY docker/frontend/firebase-config-live.ts frontend/src/ts/constants/firebase-config.ts
|
||||
COPY docker/frontend/firebase-config-live.ts frontend/src/ts/constants/firebase-config-live.ts
|
||||
|
||||
#gimme pnpm + build
|
||||
RUN npm i -g pnpm && \
|
||||
pnpm i --frozen-lockfile && \
|
||||
npm run build
|
||||
|
||||
# COPY to target
|
||||
FROM nginx:mainline-alpine
|
||||
|
||||
COPY --from=builder /app/frontend/dist /usr/share/nginx/html
|
||||
COPY docker/frontend/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY docker/frontend/updateConfig.sh /docker-entrypoint.d/updateConfig.sh
|
||||
RUN chmod +x /docker-entrypoint.d/updateConfig.sh
|
||||
|
||||
# entry
|
||||
#CMD ["./entryPoint.sh"]
|
||||
Reference in New Issue
Block a user