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

dockerfile structure updated #37

Merged
merged 1 commit into from
Mar 4, 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
File renamed without changes.
File renamed without changes.
8 changes: 0 additions & 8 deletions docker/auth/Dockerfile

This file was deleted.

Empty file removed docker/auth/README.md
Empty file.
Empty file removed docker/core/README.md
Empty file.
Empty file removed docker/docker-compose.yml
Empty file.
Empty file removed docker/mail/README.md
Empty file.
6 changes: 6 additions & 0 deletions mail/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM golang:latest
RUN mkdir /app
COPY . /app
WORKDIR /app/auth/cmd/main
RUN go build -o main
CMD [ "/app/cmd/main/main" ]
Loading