Skip to content

Commit

Permalink
merge(local): Merged local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
breadrock1 committed Jun 13, 2024
1 parent 83b51c7 commit 1e9a162
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 63 deletions.
14 changes: 10 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
FROM alpine:3.19.1
FROM golang:1.21-alpine as builder

WORKDIR /app

COPY . .

RUN mkdir -p ./indexer/uploads ./indexer/watcher ./indexer/unrecognized
RUN rm -rf .env && go mod download && go build -o doc-notifier .

FROM golang:1.21-alpine

RUN apk add --no-cache curl
WORKDIR /app

EXPOSE 2893
COPY --from=builder /app/doc-notifier .
RUN mkdir indexer && mkdir upload

CMD ["/app/doc-notifier", "-ej"]

EXPOSE 2893
59 changes: 0 additions & 59 deletions deployments/docker-compose.production.yml

This file was deleted.

0 comments on commit 1e9a162

Please sign in to comment.