1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
This commit is contained in:
Jörn-Michael Miehe 2021-08-04 03:46:57 +02:00
parent 5305a74bb2
commit cb4031b422

View file

@ -12,14 +12,14 @@ COPY Pipfile Pipfile.lock ./
RUN set -ex; \ RUN set -ex; \
\ \
# install build prerequisites # install build prerequisites
apk add -t build_reqs --no-cache \ apk add --no-cache \
build-base \ build-base \
jpeg-dev \ jpeg-dev \
zlib-dev \ zlib-dev \
; \ ; \
pipenv sync; \ pipenv sync; \
# remove build prerequisites # remove build prerequisites
apk del --no-cache build_reqs; apk del --no-cache build-base;
COPY . . COPY . .