fix docker build

forgot during rename
This commit is contained in:
Enot (ded) Skelly
2026-06-05 08:38:24 -07:00
parent a943660778
commit 30a06a291f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -3,12 +3,12 @@ WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build -o tower ./cmd/tower
RUN go build -o beacon ./cmd/beacon
FROM alpine:3.19
RUN apk add --no-cache ca-certificates tzdata postgresql-client
WORKDIR /app
COPY --from=builder /app/tower .
COPY --from=builder /app/beacon .
COPY db/migrations/ ./migrations/
COPY .build/docker-entrypoint.sh .
RUN chmod +x docker-entrypoint.sh
+1 -1
View File
@@ -24,4 +24,4 @@ if [ -n "$POSTGRES_DSN" ]; then
echo "Migrations complete."
fi
exec ./tower "$@"
exec ./beacon "$@"