Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #710

Merged
merged 3 commits into from
Jul 28, 2024
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
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
Loading