Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ CMD ["npm", "start"]
# --- Stage 3: Builder (Compilation) ---
FROM base AS builder
COPY . .
# Args to bake URLs into the JS bundle
# Args to bake URLs and version into the JS bundle
ARG REACT_APP_API_URL
ARG REACT_APP_AUTH_URL
ARG APP_VERSION
ENV REACT_APP_API_URL=$REACT_APP_API_URL
ENV REACT_APP_AUTH_URL=$REACT_APP_AUTH_URL
ENV REACT_APP_VERSION=$APP_VERSION
ENV NODE_OPTIONS=--openssl-legacy-provider
RUN if [ -f yarn.lock ]; then yarn build; else npm run build; fi

Expand Down
2 changes: 1 addition & 1 deletion src/components/home/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

/* Leaderboard Table */
.leaderboard-table {
margin-bottom: 0;
margin-bottom: 3rem;
}

.leaderboard-table thead th {
Expand Down