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

14 lines
304 B
Docker

# 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