diff --git a/Dockerfile b/Dockerfile index 734631d..13d41ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,10 @@ COPY . . RUN go mod download # Build the Go app -RUN go build -o main . +RUN go build . # Expose port 8080 for incoming traffic EXPOSE 4002 # Define the command to run the app when the container starts -CMD ["go", "run"] \ No newline at end of file +CMD ["/portfolio-backend"] \ No newline at end of file diff --git a/main b/main deleted file mode 100644 index c030f04..0000000 Binary files a/main and /dev/null differ