Skip to content

Commit 8285866

Browse files
authored
Set CLIENT_URL environment variable in Dockerfile
1 parent d3437f9 commit 8285866

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ ARG DB_URL
88
ARG PORT
99
ARG APP_ENV
1010
ARG CLERK_SECRET_KEY
11-
ENV CLIENT_URL=https://scintillating-commitment-production-2429.up.railway.app
11+
1212
COPY . .
1313
RUN CGO_ENABLED=0 GOOS=linux go build -o /server ./cmd/server/
14-
1514
FROM alpine:latest
15+
ENV CLIENT_URL=https://scintillating-commitment-production-2429.up.railway.app
1616
COPY --from=builder /server /server
1717
EXPOSE 8080
1818
CMD ["/server"]

0 commit comments

Comments
 (0)