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 .github/workflows/dev-build-deploy-email-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ jobs:
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--target prod \
--push \
-f ./apps/api/cmd/email_worker/Dockerfile \
-t ghcr.io/${{ github.repository_owner }}/core-email-worker:dev \
./apps/api/cmd/email_worker
./apps/api

run-migrations:
name: Run Goose Migrations
Expand Down
4 changes: 2 additions & 2 deletions apps/api/cmd/email_worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM golang:1.24-alpine AS base

WORKDIR /app

COPY ../../go.mod ../../go.sum ./
COPY go.mod go.sum ./

RUN go mod download

COPY ../../ ./
COPY . .

# Dev
FROM base AS dev
Expand Down