We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13607a4 commit da21498Copy full SHA for da21498
1 file changed
Dockerfile
@@ -2,16 +2,15 @@ FROM alpine:3.22
2
LABEL org.opencontainers.image.source=https://github.com/offspot/adminui
3
4
COPY --from=ghcr.io/astral-sh/uv:0.9.9 /uv /uvx /bin/
5
-
+RUN apk add --no-cache curl dumb-init yaml git
6
COPY pyproject.toml /src/
7
WORKDIR /src
8
RUN uv sync --no-install-project
9
10
ENV STATIC_DIR=/var/www/static
11
RUN \
12
- apk add --no-cache curl dumb-init yaml \
13
# FontAwesome font
14
- && mkdir -p ${STATIC_DIR} \
+ mkdir -p ${STATIC_DIR} \
15
&& curl -L -O https://use.fontawesome.com/releases/v7.1.0/fontawesome-free-7.1.0-web.zip \
16
&& unzip -o fontawesome-free-7.1.0-web.zip -d ${STATIC_DIR}/ \
17
&& rm -f fontawesome-free-7.1.0-web.zip \
0 commit comments