We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc7186 commit 16874a3Copy full SHA for 16874a3
2 files changed
Dockerfile
@@ -1,9 +1,10 @@
1
-FROM golang:1.24-alpine AS build
+FROM golang:1.25-alpine AS build
2
WORKDIR /src
3
COPY go.mod go.sum ./
4
RUN go mod download
5
COPY migrations ./migrations
6
COPY db ./db
7
+COPY gtfs ./gtfs
8
COPY *.go ./
9
RUN CGO_ENABLED=0 go build -o /vehicle-positions .
10
docker-compose.yml
@@ -23,6 +23,7 @@ services:
23
PORT: "8080"
24
DATABASE_URL: "postgres://postgres:postgres@db:5432/vehicle_positions?sslmode=disable"
25
STALENESS_THRESHOLD: "5m"
26
+ JWT_SECRET: "this-is-a-local-dev-secret-1234567890"
27
depends_on:
28
db:
29
condition: service_healthy
0 commit comments