Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
rasulov1337 committed Dec 15, 2024
1 parent 3e04c52 commit 946d200
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ RUN go build -o /app/backend ./cmd/webapp
# 2. Run it
FROM alpine:latest
COPY --from=builder /app/backend /app/backend
COPY --from=builder /app/.env /app/.env
COPY --from=builder /app/ssl/ /app/ssl/

WORKDIR /app
Expand Down
1 change: 0 additions & 1 deletion cmd/migrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ RUN go build -o /app/migrator ./cmd/migrator
# 2. Run it
FROM alpine:latest
COPY --from=builder /app/migrator /app/migrator
COPY --from=builder /app/.env /app/.env
COPY --from=builder /app/cities_images/ /app/cities_images/
WORKDIR /app
CMD ["/app/migrator"]
1 change: 0 additions & 1 deletion microservices/ads_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ RUN go build -o /microservices/ads_service/cmd/ads_service ./microservices/ads_s
FROM alpine:latest
# WORKDIR /microservices/ads_service
COPY --from=builder ./microservices/ads_service/cmd/ads_service /app/ads_service
COPY --from=builder ./app/.env /.env
COPY --from=builder ./app/ssl /ssl/
CMD ["/app/ads_service"]
1 change: 0 additions & 1 deletion microservices/auth_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ RUN go build -o /microservices/auth_service/cmd/auth_service ./microservices/aut
FROM alpine:latest
# WORKDIR /microservices/auth_service
COPY --from=builder ./microservices/auth_service/cmd/auth_service /app/auth_service
COPY --from=builder ./app/.env /.env
CMD ["/app/auth_service"]
1 change: 0 additions & 1 deletion microservices/city_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ RUN go build -o /microservices/city_service/cmd/city_service ./microservices/cit
FROM alpine:latest
# WORKDIR /microservices/city_service
COPY --from=builder ./microservices/city_service/cmd/city_service /app/city_service
COPY --from=builder ./app/.env /.env
CMD ["/app/city_service"]

0 comments on commit 946d200

Please sign in to comment.