feat:#11 added gcc and enabled performance sql

This commit is contained in:
Elmar Kresse
2024-01-16 01:18:27 +01:00
parent 9ef47e1ce1
commit 892a08936f

View File

@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.21.6
# Set the Current Working Directory inside the container
WORKDIR /app
@ -12,7 +12,7 @@ COPY *.go ./
COPY . .
# Build the Go app
RUN CGO_ENABLED=0 GOOS=linux go build -o /htwkalender
RUN CGO_ENABLED=1 GOOS=linux go build -o /htwkalender
# Expose port 8080 to the outside world
EXPOSE 8080