scoresaber-reloadedv3/apps/frontend/Dockerfile

20 lines
308 B
Docker
Raw Normal View History

2024-10-04 15:43:12 +00:00
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
2024-10-04 15:51:17 +00:00
RUN turbo run build --filter=frontend
2024-10-04 15:43:12 +00:00
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
EXPOSE 3000
2024-10-04 15:51:17 +00:00
CMD pnpm run start