diff --git a/code/back/integrator/Dockerfile b/code/back/integrator/Dockerfile index 389153b..3ec7e38 100644 --- a/code/back/integrator/Dockerfile +++ b/code/back/integrator/Dockerfile @@ -6,5 +6,5 @@ RUN go build -ldflags "-s -w" -o ./bin/integrator ./cmd FROM alpine:latest AS runner WORKDIR /app -COPY --from=builder /app/bin/gateway . +COPY --from=builder /app/bin/integrator . CMD ["./integrator"]