When trying to run ansvif in a docker container, I get the error This account is currently not available. Similarly, when trying to run ansvif on Windows, I get the error The process cannot access the file because it is being used by another process.
Code to reproduce error in Docker using a Dockerfile:
FROM ubuntu:16.04
WORKDIR /src
RUN apt update && apt-get --no-install-recommends -yqq install \
ca-certificates \
git \
automake \
autoconf-archive \
zlib1g-dev \
g++ \
libgcc-4.8-dev \
gcc \
gtk2.0
RUN git clone https://github.com/oxagast/ansvif.git
WORKDIR ansvif
RUN aclocal
RUN autoconf
RUN automake -a
RUN ./configure --disable-gtk
RUN make
CMD make check
Command used to reproduce error in Windows:
.\ansvif.exe -t .\examples\specific\spac
e.txt -c .\notepad.exe -b 2048
I copied notepad into the ansvif folder that was created from the zip on the releases page.
When trying to run ansvif in a docker container, I get the error
This account is currently not available.Similarly, when trying to run ansvif on Windows, I get the errorThe process cannot access the file because it is being used by another process.Code to reproduce error in Docker using a Dockerfile:
Command used to reproduce error in Windows:
I copied notepad into the ansvif folder that was created from the zip on the releases page.