Add authenticated endpoint.

This commit is contained in:
Tom Alexander
2024-10-15 23:03:52 -04:00
parent f9d3c551f0
commit 9ea4952327
14 changed files with 501 additions and 29 deletions

View File

@@ -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