Add authenticated endpoint.
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
FROM alpine:3.20 AS builder
|
||||
ARG ALPINE_VERSION="3.20"
|
||||
|
||||
FROM alpine:${ALPINE_VERSION} AS builder
|
||||
|
||||
RUN apk add --no-cache python3 poetry py3-poetry-plugin-export
|
||||
|
||||
@@ -10,7 +12,7 @@ RUN poetry export --output=requirements.txt
|
||||
|
||||
|
||||
|
||||
FROM alpine:3.20 AS runner
|
||||
FROM alpine:${ALPINE_VERSION} AS runner
|
||||
|
||||
RUN addgroup web && adduser -D -G web web && install -d -D -o web -g web -m 700 /source
|
||||
WORKDIR /source
|
||||
|
||||
Reference in New Issue
Block a user