summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 6dd20d1..30173a6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,12 +8,8 @@ RUN go mod download
COPY . .
-#Install the build dependencies
-RUN apk add --no-cache gcc libc-dev
-
# Build the binary
-#CGO_ENABLED=1 for go-sqlite3 to work
-RUN CGO_ENABLED=1 go build -o main .
+RUN go build -o main .
# Runner Stage
FROM alpine:latest