added Dockerfile

This commit is contained in:
Spencer Heywood 2022-02-18 15:10:21 -07:00
parent 3fd3d16503
commit b1e0ba6b0c

8
docker/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3-buster
COPY . /app
WORKDIR /app
RUN pip3 install .
ENTRYPOINT ["/usr/local/bin/spodcast"]