j
All checks were successful
Deploy Frontend / deploy (push) Successful in 4m3s

This commit is contained in:
Lee
2024-10-04 16:43:12 +01:00
parent 43cefc21aa
commit e0833d17f1
432 changed files with 9310 additions and 2898 deletions

20
apps/frontend/Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM fascinated/docker-images:nodejs_20_with_pnpm
WORKDIR /app
COPY . .
RUN pnpm install
ENV NEXT_TELEMETRY_DISABLED 1
RUN pnpm i -g turbo@^2
RUN turbo prune frontend --docker
RUN turbo run build
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
EXPOSE 3000
CMD node apps/frontend/server.js