2
0
mirror of https://github.com/Shawn-Shan/fawkes.git synced 2024-09-20 07:26:37 +05:30
fawkes/Dockerfile

14 lines
304 B
Docker
Raw Normal View History

2020-11-30 21:52:22 +05:30
# set base image
FROM python:3.7-slim
# set the working directory in the container
WORKDIR /app
# install fawkes
RUN pip install fawkes
# downgrade h5py: https://github.com/Shawn-Shan/fawkes/issues/75
RUN pip install --upgrade h5py==2.10.0
# copy the files you want to edit with fawkes
COPY imgs imgs