1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 06:53:00 +00:00
fftcgtool/Dockerfile
2021-09-07 15:16:41 +02:00

18 lines
307 B
Docker

FROM python:3.9-alpine
ENV PYTHONUNBUFFERED 1
RUN set -ex; \
# install prerequisites
apk add --no-cache \
g++ \
jpeg-dev \
zlib-dev \
;
COPY . /usr/src/fftcgtool
RUN set -ex; \
pip3 --use-feature=in-tree-build install /usr/src/fftcgtool
ENTRYPOINT ["fftcgtool"]