mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
10 lines
216 B
Docker
10 lines
216 B
Docker
![]() |
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"]
|