Minor tweaks to dockerfile and workflow
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m5s
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m5s
This commit is contained in:
parent
adfd1e9b82
commit
18ac1b46ae
@ -34,5 +34,4 @@ jobs:
|
||||
context: .
|
||||
push: true
|
||||
tags: gitea.rannes.dev/rannes.dev/local-weather:latest
|
||||
build-args: |
|
||||
PLACES_API=${{ secrets.PLACES_API }}
|
||||
secrets: places_api=${{ secrets.PLACES_API }}
|
||||
|
@ -31,9 +31,11 @@ RUN \
|
||||
FROM base AS runner
|
||||
WORKDIR /app
|
||||
|
||||
# Mount environment variables
|
||||
RUN --mount=type=secret,id=places_api \
|
||||
cat /run/secrets/places_api
|
||||
|
||||
ENV NODE_ENV production
|
||||
ARG PLACES_API
|
||||
ENV PLACES_API ${PLACES_API}
|
||||
|
||||
RUN addgroup --system --gid 1001 nodejs
|
||||
RUN adduser --system --uid 1001 nextjs
|
||||
|
Loading…
Reference in New Issue
Block a user