mirror of https://github.com/knative/docs.git
19 lines
371 B
Docker
19 lines
371 B
Docker
# Use the official Python image.
|
|
# https://hub.docker.com/_/python
|
|
FROM python
|
|
|
|
# Copy local code to the container image.
|
|
ENV APP_HOME /app
|
|
WORKDIR $APP_HOME
|
|
COPY . .
|
|
|
|
# Install production dependencies.
|
|
RUN pip install Flask
|
|
|
|
# Configure and document the service HTTP port.
|
|
ENV PORT 8080
|
|
EXPOSE $PORT
|
|
|
|
# Run the web service on container startup.
|
|
CMD ["python", "app.py"]
|