fetch / Dockerfile
pup-py's picture
switch to uvicorn for custom logging
058dfe9
raw
history blame contribute delete
513 Bytes
FROM debian:latest AS puppy
# prep
RUN apt-get update \
&& apt-get install -y curl \
&& apt-get clean
RUN useradd -m -u 1000 user
USER user
ENV PATH=/home/user/.pixi/bin:$PATH
RUN mkdir $HOME/puppy
WORKDIR $HOME/puppy
# install puppy
RUN curl -fsSL https://raw.githubusercontent.com/liquidcarbon/puppy/main/pup.sh | bash -s 3.12
RUN pup
# setup app env
RUN pup new appenv
WORKDIR appenv
COPY --chown=user ./* .
RUN pixi run uv sync --project .
# HELLO WORLD
EXPOSE 7860
CMD .venv/bin/python -m fetch