Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nextjs into Vxrcel-clean
  • Loading branch information
kleenpulse committed Jul 28, 2024
2 parents a517b54 + fe163db commit 6932e8b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 24 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Create .env file
run: |
cp .env.sample .env

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Create .env file
run: |
cp .env.sample .env

- name: Cache pnpm modules
uses: actions/cache@v3
Expand Down
1 change: 0 additions & 1 deletion docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN cp .env.sample .env

# Build the application
RUN corepack enable pnpm && pnpm run build
Expand Down
14 changes: 7 additions & 7 deletions docker/development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ services:
- 3100:3000
restart: always

next-dev-frontend-2:
build:
context: ../../
dockerfile: docker/development/Dockerfile
ports:
- 3130:3000
restart: always
# next-dev-frontend-2:
# build:
# context: ../../
# dockerfile: docker/development/Dockerfile
# ports:
# - 3130:3000
# restart: always
14 changes: 7 additions & 7 deletions docker/prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ services:
- 3000:3000
restart: always

next-prod-frontend-2:
build:
context: ../../
dockerfile: docker/prod/Dockerfile
ports:
- 3030:3000
restart: always
# next-prod-frontend-2:
# build:
# context: ../../
# dockerfile: docker/prod/Dockerfile
# ports:
# - 3030:3000
# restart: always

0 comments on commit 6932e8b

Please sign in to comment.