From 83fc43f525dd4c4018612c5b84688e73ac46cdc7 Mon Sep 17 00:00:00 2001 From: Simon Jakesch Date: Fri, 26 Jan 2024 18:02:56 -0600 Subject: [PATCH] removig Dockerfile for buildpack flow/branch --- src/Dockerfile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/Dockerfile 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"]