docs/archived/v0.21-docs/eventing/samples/helloworld/helloworld-python/Dockerfile

14 lines
149 B
Docker

FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8080
ENTRYPOINT [ "python" ]
CMD [ "helloworld.py" ]