fuzzysearch/Dockerfile
2020-10-09 14:42:21 -04:00

5 lines
196 B
Docker

FROM debian:buster-slim
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*
COPY ./weasyl-watcher /bin/weasyl-watcher
CMD ["/bin/weasyl-watcher"]