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

22 lines
360 B
Docker
Raw Normal View History

2018-11-02 18:49:35 +00:00
FROM python:3.7-alpine
ENV LIBRARY_PATH=/lib:/usr/lib
ENV PYTHONUNBUFFERED 1
RUN \
# install build prerequisites \
apk add --no-cache \
build-base \
jpeg-dev \
zlib-dev \
&& pip3 install pillow requests \
# remove build prerequisites \
&& apk del --no-cache \
build-base
WORKDIR "/app"
COPY . .
2018-11-02 22:39:09 +00:00
ENTRYPOINT ["./main.py"]