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

26 lines
472 B
Docker
Raw Normal View History

2024-10-04 17:12:32 +00:00
FROM fascinated/docker-images:nodejs_20_with_pnpm
2024-10-04 15:43:12 +00:00
2024-10-04 16:46:38 +00:00
RUN apk update
RUN apk add --no-cache libc6-compat
2024-10-04 17:12:32 +00:00
2024-10-04 16:46:38 +00:00
# Set working directory
2024-10-04 15:43:12 +00:00
WORKDIR /app
2024-10-04 16:46:38 +00:00
RUN pnpm i -g turbo@^2
2024-10-04 15:43:12 +00:00
COPY . .
2024-10-04 17:14:59 +00:00
# Install depends
RUN pnpm install
2024-10-04 16:21:44 +00:00
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
2024-10-04 16:46:38 +00:00
# Add the sentry auth token
ARG SENTRY_AUTH_TOKEN
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
2024-10-04 17:06:08 +00:00
RUN pnpm turbo run build --filter=frontend
2024-10-04 16:21:44 +00:00
2024-10-04 17:08:31 +00:00
EXPOSE 3000
2024-10-04 17:14:59 +00:00
CMD node /app/apps/frontend/.next/standalone/server.js