Skip to content

Commit

Permalink
Debug docker build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
daya0576 committed Sep 22, 2024
1 parent 3862695 commit 5110bae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ FROM python:3.12-slim AS builder
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC \
apt-get install -y --no-install-recommends \
build-essential \
build-essential,libffi-dev \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean

RUN python -m pip install --upgrade pip
# NiceGUI 1.4.20 - Make libsass optional
# RUN python -m pip install --upgrade libsass
RUN apt install libffi-dev
RUN python -m pip install --upgrade cffi

FROM python:3.12-slim AS release
Expand Down

0 comments on commit 5110bae

Please sign in to comment.