mirror of
https://github.com/containers/podman.git
synced 2025-11-29 17:48:05 +08:00
* Add traps to report setup, tests, and teardown errors as failures * Pass through return code of podman commands * Fix unset variables * Fix simple_port_map image build when installing flask (PEP 668 - externally managed environment error) * Ignore kill errors in slirp4netns_opts teardown steps Signed-off-by: Gavin Lam <gavin.oss@tutamail.com>
7 lines
111 B
Docker
7 lines
111 B
Docker
FROM alpine
|
|
WORKDIR /app
|
|
RUN apk update && apk add py3-flask
|
|
COPY . /app
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["app.py"]
|