You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/Dockerfile.py3

14 lines
197 B
Python

# Testing with python 3
FROM python:3
#RUN pip3 install pytest
ADD python-entrypoint /opt/docker-entrypoint/
WORKDIR /opt/docker-entrypoint/
ENTRYPOINT ["./entrypoint.py"]
CMD ["echo", "ok"]