1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/src/ytdl/Dockerfile

10 lines
216 B
Docker
Raw Normal View History

FROM python:3.6.0-alpine
WORKDIR /app
COPY . .
RUN apk add --update --no-cache gcc g++ make && \
pip install --no-cache-dir --requirement /app/requirements.txt
EXPOSE 8080
ENTRYPOINT ["python", "/app/ytdl.py"]