Skip to content

Commit da21498

Browse files
committed
Fixed install via git commit
1 parent 13607a4 commit da21498

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ FROM alpine:3.22
22
LABEL org.opencontainers.image.source=https://github.com/offspot/adminui
33

44
COPY --from=ghcr.io/astral-sh/uv:0.9.9 /uv /uvx /bin/
5-
5+
RUN apk add --no-cache curl dumb-init yaml git
66
COPY pyproject.toml /src/
77
WORKDIR /src
88
RUN uv sync --no-install-project
99

1010
ENV STATIC_DIR=/var/www/static
1111
RUN \
12-
apk add --no-cache curl dumb-init yaml \
1312
# FontAwesome font
14-
&& mkdir -p ${STATIC_DIR} \
13+
mkdir -p ${STATIC_DIR} \
1514
&& curl -L -O https://use.fontawesome.com/releases/v7.1.0/fontawesome-free-7.1.0-web.zip \
1615
&& unzip -o fontawesome-free-7.1.0-web.zip -d ${STATIC_DIR}/ \
1716
&& rm -f fontawesome-free-7.1.0-web.zip \

0 commit comments

Comments
 (0)