-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
5,492 additions
and
19,814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
Dockerfile | ||
.dockerignore | ||
node_modules | ||
npm-debug.log | ||
README.md | ||
.next | ||
.github | ||
.husky | ||
.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,54 @@ | ||
# Install dependencies only when needed | ||
FROM node:16-alpine AS deps | ||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. | ||
RUN apk add --no-cache libc6-compat | ||
RUN apk add --update --no-cache python3 build-base gcc && ln -sf /usr/bin/python3 /usr/bin/python | ||
WORKDIR /app | ||
COPY package.json yarn.lock ./ | ||
RUN yarn install --frozen-lockfile | ||
COPY package.json yarn.lock* ./ | ||
RUN yarn --frozen-lockfile | ||
|
||
# Rebuild the source code only when needed | ||
FROM node:16-alpine AS builder | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=deps /app/node_modules ./node_modules | ||
|
||
COPY . . | ||
|
||
RUN yarn build | ||
# RUN npm run build | ||
|
||
# Production image, copy all the files and run next | ||
FROM node:16-alpine AS runner | ||
WORKDIR /app | ||
|
||
ENV NODE_ENV production | ||
|
||
RUN addgroup --system --gid 1001 bloggroup | ||
RUN adduser --system --uid 1001 bloguser | ||
RUN addgroup -g 1001 -S nodejs | ||
RUN adduser -S nextjs -u 1001 | ||
|
||
# You only need to copy next.config.js if you are NOT using the default configuration | ||
COPY --from=builder /app/next.config.js ./ | ||
COPY --from=builder /app/public ./public | ||
COPY --from=builder /app/package.json ./package.json | ||
|
||
# Automatically leverage output traces to reduce image size | ||
COPY --from=builder /app/components ./components | ||
COPY --from=builder /app/context ./context | ||
COPY --from=builder /app/contracts ./contracts | ||
COPY --from=builder /app/pages ./pages | ||
COPY --from=builder /app/styles ./styles | ||
COPY --from=builder /app/tailwind.config.js ./tailwind.config.js | ||
COPY --from=builder /app/postcss.config.js ./postcss.config.js | ||
|
||
# Automatically leverage output traces to reduce image size | ||
# https://nextjs.org/docs/advanced-features/output-file-tracing | ||
COPY --from=builder --chown=bloguser:bloggroup /app/.next/standalone ./ | ||
COPY --from=builder --chown=bloguser:bloggroup /app/.next/static ./.next/static | ||
COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next | ||
|
||
USER bloguser | ||
USER nextjs | ||
|
||
EXPOSE 3000 | ||
|
||
ENV PORT 3000 | ||
|
||
CMD ["node", "server.js"] | ||
# Next.js collects completely anonymous telemetry data about general usage. | ||
# Learn more here: https://nextjs.org/telemetry | ||
# Uncomment the following line in case you want to disable telemetry. | ||
# ENV NEXT_TELEMETRY_DISABLED 1 | ||
|
||
CMD ["yarn", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
version: '3.9' | ||
version: '3' | ||
|
||
services: | ||
festival-ticket-marketplace: | ||
web: | ||
build: | ||
context: './' | ||
networks: | ||
- dev | ||
context: . | ||
dockerfile: Dockerfile | ||
image: festival-ticket-marketplace | ||
restart: always | ||
ports: | ||
- '3000:3000' | ||
- 3000:3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
const nextConfig = { | ||
reactStrictMode: false, | ||
swcMinify: true, | ||
experimental: true, | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.
ee589bc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
festival-ticket-marketplace – ./
festival-ticket-marketplace-git-main-eltontay.vercel.app
festival-ticket-marketplace-eltontay.vercel.app
festival-ticket-marketplace.vercel.app