mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-12-24 13:37:58 +08:00
10 lines
115 B
Docker
10 lines
115 B
Docker
FROM python:3-alpine
|
|
MAINTAINER strahe <u@strahe.com>
|
|
|
|
WORKDIR /app
|
|
|
|
ADD . /app
|
|
|
|
ENTRYPOINT ["python", "ddns.py"]
|
|
|