docs/code-samples/eventing/helloworld/helloworld-python/Dockerfile

14 lines
150 B
Docker

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