This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/apps/frontend/Dockerfile
Liam d4d7a60d1b
All checks were successful
Deploy Frontend / deploy (push) Successful in 3m23s
ehuqiweh
2024-10-04 16:51:17 +01:00

20 lines
308 B
Docker

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 --filter=frontend
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
EXPOSE 3000
CMD pnpm run start