fix oauth scope mismatch

This commit is contained in:
Evan Jarrett
2026-01-05 20:26:41 -06:00
parent a448e8257b
commit f35bf2bcde
10 changed files with 1510 additions and 50 deletions
+6 -4
View File
@@ -1,9 +1,12 @@
# Development image with Air hot reload
# Build: docker build -f Dockerfile.dev -t atcr-appview-dev .
# Run: docker run -v $(pwd):/app -p 5000:5000 atcr-appview-dev
# Build: docker build -f Dockerfile.dev -t atcr-dev .
# Run: docker run -v $(pwd):/app -p 5000:5000 atcr-dev
FROM docker.io/golang:1.25.4-trixie
ARG AIR_CONFIG=.air.toml
ENV DEBIAN_FRONTEND=noninteractive
ENV AIR_CONFIG=${AIR_CONFIG}
RUN apt-get update && \
apt-get install -y --no-install-recommends sqlite3 libsqlite3-dev curl && \
@@ -17,5 +20,4 @@ COPY go.mod go.sum ./
RUN go mod download
# For development: source mounted as volume, Air handles builds
EXPOSE 5000
CMD ["air", "-c", ".air.toml"]
CMD ["sh", "-c", "air -c ${AIR_CONFIG}"]