blob: b87081c9c5919b7a60800ce50a3d877b24bade68 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM registry.cri.epita.fr/martial.simon/tiger-compiler/buildenv-slim:1.1.0
LABEL org.opencontainer.image.name="buildenv-slim-pytest" \
org.opencontainer.image.authors="Clément Metz <clement.metz@epita.fr>" \
org.opencontainer.image.version="1.1.0" \
org.opencontainer.image.comment="la même avec pytest et des tools de coverage"
RUN apk add --no-cache \
python3 \
py3-pytest
|