-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update install_tsl.sh * changed ubuntu:23.04 to 22.04 * fixed issue with pip * Fixed mask_storeu test * removed whitespaces * removed whitespaces * Fixed Dockerfiles
- Loading branch information
1 parent
b2dfa63
commit f344573
Showing
9 changed files
with
71 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
FROM ubuntu:23.04 | ||
FROM ubuntu:22.04 | ||
|
||
ENV TZ=Europe/Berlin | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update | ||
RUN apt-get -y install bash build-essential binutils lintian debhelper dh-make devscripts | ||
|
||
RUN mkdir -p /root/debbuild/tsl/DEBIAN | ||
RUN mkdir -p /root/debbuild/tsl/usr/include/tsl/__hollistic | ||
|
||
LABEL org.opencontainers.image.source=https://github.com/db-tu-dresden/TSL | ||
LABEL org.opencontainers.image.description="DEB Builder for TSL" | ||
LABEL org.opencontainers.image.licenses=Apache-2.0 | ||
|
||
COPY control /root/debbuild/tsl/DEBIAN/control | ||
COPY postinst /root/debbuild/tsl/DEBIAN/postinst | ||
COPY postrm /root/debbuild/tsl/DEBIAN/postrm | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
LABEL org.opencontainers.image.source=https://github.com/db-tu-dresden/TSL | ||
LABEL org.opencontainers.image.description="DEB Builder for TSL" | ||
LABEL org.opencontainers.image.licenses=Apache-2.0 | ||
|
||
# ENTRYPOINT [ "/bin/bash" ] | ||
ENTRYPOINT ["/entrypoint.sh"] |
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,23 +1,23 @@ | ||
FROM amd64/ubuntu:23.04 | ||
FROM amd64/ubuntu:22.04 | ||
|
||
ENV TZ=Europe/Berlin | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update | ||
RUN apt-get -y install software-properties-common \ | ||
python3-full python3-pip python3-venv \ | ||
git wget | ||
python3-full python3-pip python3-venv python3-distutils \ | ||
git wget | ||
|
||
RUN ls | ||
RUN pwd | ||
|
||
COPY requirements.txt /requirements.txt | ||
|
||
RUN pip3 install --ignore-installed -r /requirements.txt --break-system-packages | ||
|
||
LABEL org.opencontainers.image.source=https://github.com/db-tu-dresden/TSL | ||
LABEL org.opencontainers.image.description="TSLerator Generation Image" | ||
LABEL org.opencontainers.image.licenses=Apache-2.0 | ||
RUN pip3 install --ignore-installed -r /requirements.txt | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
COPY target_flags_translate.py /target_flags_translate.py | ||
|
||
LABEL org.opencontainers.image.source=https://github.com/db-tu-dresden/TSL | ||
LABEL org.opencontainers.image.description="TSLGenerator Generation Image" | ||
LABEL org.opencontainers.image.licenses=Apache-2.0 | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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
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
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
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