1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/Dockerfile

19 lines
307 B
Docker
Raw Normal View History

2021-08-09 03:47:25 +00:00
FROM python:3.9-alpine
2018-11-02 18:49:35 +00:00
ENV PYTHONUNBUFFERED 1
2021-08-03 00:22:00 +00:00
RUN set -ex; \
2021-08-04 17:09:25 +00:00
# install prerequisites
2021-08-04 01:46:57 +00:00
apk add --no-cache \
2021-08-04 17:09:25 +00:00
g++ \
jpeg-dev \
zlib-dev \
;
2018-11-02 18:49:35 +00:00
2021-09-07 13:16:41 +00:00
COPY . /usr/src/fftcgtool
RUN set -ex; \
pip3 --use-feature=in-tree-build install /usr/src/fftcgtool
2018-11-02 18:49:35 +00:00
2021-09-07 13:16:41 +00:00
ENTRYPOINT ["fftcgtool"]