Files
bamort/docker/Dockerfile.backend.dev
T

23 lines
545 B
Docker
Raw Normal View History

2025-07-24 07:39:43 +02:00
# Development Dockerfile für Go Backend mit Live-Reloading
#FROM golang:1.23-alpine
2025-12-19 17:04:20 +01:00
FROM golang:1.25-alpine
2025-07-24 07:39:43 +02:00
# Install necessary packages for CGO and SQLite
RUN apk add --no-cache gcc musl-dev sqlite-dev
# Install Air für Live-Reloading (kompatible Version für Go 1.23)
#RUN go install github.com/cosmtrek/air@v1.49.0
RUN go install github.com/air-verse/air@latest
WORKDIR /app
# Copy go.mod and go.sum first
COPY go.mod go.sum ./
RUN go mod download
# Expose port
EXPOSE 8180
# Use Air for live reloading
CMD ["air", "-c", ".air.toml"]