mirror of
https://github.com/containers/podman.git
synced 2025-08-26 21:20:17 +08:00

to prevent any regressions, we should be running regression tests using compose. Signed-off-by: baude <bbaude@redhat.com>
7 lines
131 B
Docker
7 lines
131 B
Docker
FROM alpine
|
|
WORKDIR /app
|
|
RUN apk update && apk add py3-pip && pip3 install flask
|
|
COPY . /app
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["app.py"]
|