saintnet_stickers/Containerfile
Steve 33a0065d08
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
more fix
2024-09-04 21:42:58 -04:00

11 lines
252 B
Docker

FROM python:3.11.4-bookworm as builder
WORKDIR /srv
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install .
RUN --mount=type=secret,id=config_json ./create_packs.sh
FROM nginx:alpine
COPY --from=0 /srv/web /usr/share/nginx/html