diff --git a/src/Dockerfile b/src/Dockerfile deleted file mode 100644 index fcffe03..0000000 --- a/src/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -# Dockerfile References: https://docs.docker.com/engine/reference/builder/ - -# Start from the latest golang base image -FROM golang:latest - -# Set the Current Working Directory inside the container -WORKDIR /app - -# Add files to app folder -ADD . /app - -# Build the Go app -RUN go build -o main . - -# Expose ports to the outside world -EXPOSE 8080 - -# Command to run the executable -CMD ["./main"]