-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/container function test (#21)
* Add functionalit test * Upgrade dependencies and increase version number * fixing duplicated job name * fixing docker pull command for modbus-client pull * use the modbus-client from function-test-preparation
- Loading branch information
Showing
4 changed files
with
158 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM alpine:3.18.4 AS base | ||
FROM alpine:3.18.8 AS base | ||
RUN apk upgrade --available --no-cache --update \ | ||
&& apk add --no-cache --update \ | ||
python3=3.11.6-r0 \ | ||
python3=3.11.8-r1 \ | ||
py3-pip=23.1.2-r0 \ | ||
# Cleanup APK | ||
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/* | ||
|
@@ -12,7 +12,7 @@ RUN apk upgrade --available --no-cache --update \ | |
FROM base as builder | ||
RUN apk add --no-cache --update \ | ||
g++=12.2.1_git20220924-r10 \ | ||
python3-dev=3.11.6-r0 \ | ||
python3-dev=3.11.8-r1 \ | ||
&& ln -s /usr/include/locale.h /usr/include/xlocale.h | ||
COPY --chown=root:root FloatToHex /FloatToHex | ||
|
||
|
@@ -26,7 +26,7 @@ RUN python3 setup.py install | |
# Building the docker image with already compiled modules | ||
FROM base | ||
LABEL maintainer="Michael Oberdorf IT-Consulting <[email protected]>" | ||
LABEL site.local.program.version="1.0.14" | ||
LABEL site.local.program.version="1.0.15" | ||
|
||
COPY --from=builder /usr/lib/python3.11/site-packages /usr/lib/python3.11/site-packages | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters